이 기사의 예에서는 JavaScript를 사용하여 Baidu와 유사한 공유 기능을 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
Tencent와 Kaixin 커뮤니티는 이러한 공유 인터페이스를 제공합니다. Baidu 공유 기능을 사용하는 것은 매우 간단합니다.
일반적으로 웹사이트에서는 공유 기능에 액세스해야 하는데 대부분 Baidu 공유를 사용하고 이 코드를 추가하지만 사용자 정의가 별로 좋지 않습니다. 공유 기능 스타일은 간단하고 너무 많은 js 코드가 필요하지 않습니다. 이는 웹 페이지의 로딩 속도를 크게 향상시킵니다.
작동 효과는 아래와 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>网络分享代码分享</title> <style type="text/css"> /** * 分享代码样式 * by kily */ #ak_share { padding:10px 0; font-size:12px; } .ak_share { height:1%; overflow:hidden; } .ak_share dt { float:left; font-weight:bold; color:#A5A5A5; height:16px; line-height:16px; } .ak_share dd { margin-right:10px; margin-left:0; height:16px; float:left; } .ak_share a:hover { color:#ed7811; text-decoration:underline;} .ak_share a { float:left; height:16px; line-height:16px; padding-left:18px; background:url(http://www.yem120.com/images/share.gif) left top no-repeat; color:#666; text-decoration:none; } .ak_share .t_163_s { background-position: 0 -16px; } .ak_share .t_qq_s { background-position: 0 -32px; } .ak_share .qzone_s { background-position: 0 -48px; } .ak_share .douban_s { background-position: 0 -64px; } </style> </head> <body> <div id="ak_share"> <dl class="ak_share"> <dt>分享:</dt> <dd> <a class="t_sina_s" href="javascript:(function(){window.open('http://v.t.sina.com.cn/share/share.php?title='+encodeURIComponent(document.title)+'&url='+encodeURIComponent(location.href)+'&source=bookmark','_blank','width=450,height=400');})()" title="分享到新浪微博" rel="nofollow">新浪微博</a> </dd> <dd> <a class="t_163_s" href="javascript:(function(){window.open('http://t.163.com/article/user /checkLogin.do?link=http://news.163.com/&source=' + '&info='+encodeURIComponent(document.title)+' '+encodeURIComponent(location.href),'_blank','width=510,height=300');})()" title="分享到网易微博" rel="nofollow">网易微博</a> </dd> <dd> <a class="t_qq_s" href="javascript:(function(){window.open('http://v.t.qq.com/share/share.php?title='+encodeURIComponent(document.title)+'&url='+encodeURIComponent(location.href)+'&source=bookmark','_blank','width=610,height=350');})()" title="分享到腾讯微博" rel="nofollow">腾讯微博</a> </dd> <dd> <a class="qzone_s" href="javascript:void(window.open('http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url='+encodeURIComponent(document.location.href)));" title="分享到QQ空间" rel="nofollow">QQ空间</a> </dd> <dd> <a class="douban_s" href="javascript:void(function(){var%20d=document,e=encodeURIComponent,s1=window.getSelection,s2=d.getSelection,s3=d.selection,s=s1?s1():s2?s2():s3?s3.createRange().text:' ',r='http://www.douban.com/recommend/?url='+e(d.location.href)+'&title='+e(d.title)+'&sel='+e(s)+'&v=1',x=function(){if(!window.open(r,'douban','toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330'))location.href=r+'&r=1'};if(/firefox/.test(navigator.userAgent)){setTimeout(x,0)}else{x()}})()" title="推荐到豆瓣" rel="nofollow">豆瓣</a> </dd> </dl> </div> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.