我应该如何设置社交共享栏

时间:2012-01-07 11:09:09

标签: html

到目前为止,我有这个:

<h2>share</h2>
        <ul class="sharing-cl" id="text"> 
        <li><a class="sh-mail" href="">email</a></li> 
        <li><a class="sh-feed" href="">feed</a></li> 
        <li><a href="">twitter</a></li>
        <li><a class="sh-face" href="http://www.facebook.com/sharer/sharer.php?src=bm&u=http%3A%2F%2Freddurrant.com">facebook</a></li> 
        <li><a class="sh-su" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freddurrant.com">stumbleupon</a></li> 
        <li><a class="sh-digg" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Freddurrant.com&title=RED%20Photography&bodytext=A%20Photogaphy%20portfolio%20for%20Ryand%20Durrant">digg</a></li> 
        <div class="fb-like" data-href="http://www.reddurrant.com" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>
    </ul>

首先,我应该如何填写剩下的链接?

其次,在使用Facebook按钮时,我想将缩略图设置为我指定的缩略图,即在assets / img / thumbnail.png中保存的缩略图 所以我尝试使用这个,这就是你被告知为类似按钮做的事情:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="http://www.facebook.com/2008/fbml">

<meta property="og:title" content="RED Photography: Ryan Durrant - Home"/>
<meta property="og:url" content="http://www.reddurrant.com"/>
<meta property="og:image" content="assets/img/thumbnail.png"/>
<meta property="og:site_name" content="RED Photography"/>
<meta property="fb:admins" content="USER_ID"/>
<meta property="og:description" content="photography portfolio for Ryan Durrant"/>

但没有运气。

任何帮助都会很棒,特别是如果你可以帮助我让其他人工作的话。要查看实际操作,请访问http://www.reddurrant.com/index.htm

网站

干杯

1 个答案:

答案 0 :(得分:0)

对于电子邮件,请尝试<li><a class="sh-mail" href="mailto:youremail@domain.com">email</a></li>

对于您的RSS Feed,请尝试<li><a class="sh-feed" href="http://linktoyourrss.rss">feed</a></li>