html JS - 社交按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html JS - 社交按钮相关的知识,希望对你有一定的参考价值。

$('.facebook').each(function() {
    var title = $(this).attr('data-url');
    var fb = 'http://www.facebook.com/sharer.php?u=' + title;
    $(this).attr("href", fb)
});
$('.twitter').each(function() {
    var title = $(this).attr('data-url');
    var tweet = 'https://twitter.com/home?status=' + title;
    $(this).attr("href", tweet)
});
$('.google-plus').each(function() {
    var title = $(this).attr('data-url');
    var gplus = 'https://plus.google.com/share?url=' + title;
    $(this).attr("href", gplus)
});
$('.pinterest').each(function() {
    var title = $(this).attr('data-url');
    var dataImg = $(this).attr('data-src');
    var pin = 'https://pinterest.com/pin/create/button/?url=' + title + '&media=' + dataImg
    $(this).attr("href", pin)
});
$('.linked-in').each(function() {
    var title = $(this).attr('data-url');
    var link = 'https://www.linkedin.com/shareArticle?mini=true&url=' + title
    $(this).attr("href", link)
});
<div class="post-share">
    <a href="#" target="_blank" class="facebook" data-url="<?php echo get_the_permalink();?>">
        <i class="fa fa-facebook"></i>
    </a>
    /
    <a href="#" target="_blank" class="twitter" data-url="<?php echo get_the_permalink();?>">
        <i class="fa fa-twitter"></i>
    </a>
    /
    <a href="#" target="_blank" class="google-plus" data-url="<?php echo get_the_permalink();?>">
        <i class="fa fa-google-plus"></i>
    </a>
    /
    <a href="#" target="_blank" class="linked-in" data-url="<?php echo get_the_permalink();?>">
        <i class="fa fa-linkedin"></i>
    </a>
    /
    <a href="#" target="_blank" class="pinterest" data-url="<?php echo get_the_permalink();?>">
        <i class="fa fa-pinterest"></i>
    </a>
</div>

以上是关于html JS - 社交按钮的主要内容,如果未能解决你的问题,请参考以下文章

html [社交分享按钮] #html

html 浮动的社交按钮?该死的。

html 用Sass动画的社交按钮

html 字体真棒社交媒体按钮示例与链接

HTML 如何将自己的社交图标添加为WordPress网站的滚动按钮:

为社交网络应用程序构建 GUI