zoukankan      html  css  js  c++  java
  • 各种分享按钮代码

    腾讯微博:

    <a id="tqq" class="menu" href="javascript:window.open('http://v.t.qq.com/share/share.php?url='+encodeURIComponent('[url]')+'&pic='+encodeURIComponent('')+'&title='+encodeURIComponent([content])),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes'); void 0">腾讯微博</a>

    新浪微薄:

    <a id="sina" class="menu" href="javascript:window.open('http://v.t.sina.com.cn/share/share.php?appkey=1961588658&url='+encodeURIComponent('[url]')+'&pic='+encodeURIComponent('')+'&title='+encodeURIComponent('[content]'),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes'); void 0">新浪微博</a>

    QQ空间:

    <a id="qq" class="menu" href="javascript:window.open('http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url='+encodeURIComponent('[url]')+'&title='+encodeURIComponent('[content]'),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes'); void 0">QQ空间</a>

    页面示例:

    <body>
    <script type="text/javascript">
    function showLayers(){
        if(!document.getElementById("shareLayer")) return false;
        if(!document.getElementById("l_box")) return false;
        var layerId = document.getElementById("shareLayer");
        var lBoxId = document.getElementById("l_box");
        if(layerId.offsetWidth == 30){
            layerId.style.width = "180px"
            lBoxId.style.display = "block";
        }else{
            layerId.style.width = "30px"
            lBoxId.style.display = "none";
        }
    }
    /*title是标题,rLink链接,summary内容,site分享来源,pic分享图片路径*/
    /*新浪微博*/
    function shareTSina(title,rLink,site,pic){
        window.open('http://service.weibo.com/share/share.php?title='+encodeURIComponent(title)+'&url='+encodeURIComponent(rLink)+'&appkey='+encodeURIComponent(site)+'&pic='+encodeURIComponent(pic),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')        
    }
    /*腾讯微博*/
    function shareToWb(title,rLink,site,pic){
        window.open('http://v.t.qq.com/share/share.php?url='+encodeURIComponent(rLink)+'&title='+encodeURI(title)+'&appkey='+encodeURI(site)+'&pic='+encodeURI(pic),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')    
    }
    /*人人*/
    function shareRR(title,rLink,summary){
        window.open('http://widget.renren.com/dialog/feed?title='+encodeURIComponent(title)+'&link='+encodeURIComponent(rLink)+'&description='+encodeURIComponent(summary),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');
    }
    /*开心网*/
    function shareKX(title,rLink,summary){
        window.open('http://www.kaixin001.com/repaste/bshare.php?rtitle='+encodeURIComponent(title)+'&rurl='+encodeURIComponent(rLink)+'&rcontent='+encodeURIComponent(summary),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes' )    
    }
    /*QQ空间*/
    function shareQzone(title,rLink,summary,site,pic){
        window.open('http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?title='+encodeURIComponent(title)+'&url='+encodeURIComponent(rLink)+'&summary='+encodeURIComponent(summary)+ '&site='+encodeURIComponent(site)+'&pics='+encodeURIComponent(pic),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')
    }
    /*百度*/
    function shareBaiDu(title,rLink){
        window.open('http://apps.hi.baidu.com/share?title='+encodeURIComponent(title)+'&url='+encodeURIComponent(rLink),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')    
    }
    /*豆瓣*/
    function shareDouBan(title,rLink){
        window.open('http://www.douban.com/recommend?title='+encodeURIComponent(title)+'&url='+encodeURIComponent(rLink),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')    
    }
    </script>
    <div id="shareLayer">
      <div id="s_btn" onclick="showLayers()"></div>
      <div id="l_box">
          <a href="javascript:void(0)" onclick="shareTSina('测试标题','http://www.ps-css.com','转贴网站','图片地址')">新浪微博</a>
          <a href="javascript:void(0)" onclick="shareQzone('测试标题','http://www.ps-css.com','测试内容','转贴网站','图片地址')">QQ空间</a>
          <a href="javascript:void(0)" onclick="shareRR('测试标题','http://www.ps-css.com','woshineirong');">人人网</a>
          <a href="javascript:void(0)" onclick="shareKX('测试标题','http://www.ps-css.com','测试内容')">开心网</a>
          <a href="javascript:void(0)" onclick="shareToWb('测试标题','http://www.ps-css.com','转贴网站','图片地址');">腾讯微博</a>
          <a href="javascript:void(0)" onclick="shareBaiDu('测试标题','http://www.ps-css.com');">百度</a>
          <a href="javascript:void(0)" onclick="shareDouBan('测试标题','http://www.ps-css.com');">豆瓣</a>
      </div>
    </div>
    </body>
    </html>

    悲剧的人人网的 内容分享就是搞不出来, 郁闷了大半天! 现在没没出来.

  • 相关阅读:
    [20200316]dmesg与时间戳2.txt
    [20200312]不要设置net.ipv4.tcp_tw_recycle=1.txt
    [20200223]关于latch and mutext的优化.txt
    [20200211]使用DBMS_SHARED_POOL.MARKHOT与sql_id的计算.txt
    [20200129]子光标不共享BIND_EQUIV_FAILURE.txt
    [20200103]GUID转换GUID_BASE64.txt
    [20191220]关于共享内存段相关问题.txt
    [20191218]降序索引疑问4.txt
    git工具-系列目录
    git工具-git基础
  • 原文地址:https://www.cnblogs.com/henw/p/2192944.html
Copyright © 2011-2022 走看看