<script>
$(function () {
// facebook
$('a.share_button.facebook').on('click' , function(e) {
var uri = encodeURI('http://www.facebook.com/share.php?u=' + location.href);
window.open(uri, 'facebookwindow', 'width=550, height=450,personalbar=0,toolbar=0,scrollbars=1,resizable=1');
});
// twitter
$('a.share_button.twitter').on('click' , function(e) {
var uri = encodeURI('http://twitter.com/share?url=' + location.href + '&text=' + document.title);
window.open(uri, 'twitterwindow', 'width=550, height=450,personalbar=0,toolbar=0,scrollbars=1,resizable=1');
});
// LINE
$('a.share_button.line').on('click' , function(e) {
var uri = encodeURI('https://timeline.line.me/social-plugin/share?url=' + location.href);
window.open(uri, 'linewindow', 'width=550, height=450,personalbar=0,toolbar=0,scrollbars=1,resizable=1');
});
});
</script>
<style>
.share_button {
font-size: 6.0rem;
}
.share_button.line {
color: #00b300;
}
.share_button.twitter {
color: #1c9ceb;
}
.share_button.facebook {
color: #395693;
}
</style>
<div style="margin-bottom: 20px;" id="share_buttons">
<!-- LINEで送る -->
<a class="share_button line"><i class="fab fa-line"></i></a>
<!-- Facebook -->
<a class="share_button facebook"><i class="fab fa-facebook-square"></i></a>
<!-- Twitter -->
<a class="share_button twitter"><i class="fab fa-twitter-square"></i></a>
</div>