我正在构建我的第一个网站,我想添加几个社交按钮(facebook,twitter等)
现在facebook有这个很棒的页面/服务,https://developers.facebook.com/docs/plugins/share-button#configurator为您提供有关如何在您的网站上嵌入各种按钮的详细说明。
对于您可能感兴趣的每个按钮,它还有以下详细代码(比如分享按钮)。
问题是,代码不起作用。我真的在test.html文件上复制/粘贴了这个例子,我打开它看看按钮的形式......什么都没有。
我甚至已经尝试了div的高度,宽度和背景颜色,这些div假设携带按钮但浏览器上没有按钮(最新的mozilla)。
为什么这段代码不起作用?它有所有标签,一切看起来都很细致,而且很有意义。我的意思是我不希望按钮有效,因为我没有重定向到任何现有的域,但是按钮应该出现在右边?
<html>
<head>
<title>Your Website Title</title>
<!-- You can use Open Graph tags to customize link previews.
Learn more: https://developers.facebook.com/docs/sharing/webmasters -->
<meta property="og:url" content="http://www.your-domain.com/your-page.html" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Your Website Title" />
<meta property="og:description" content="Your description" />
<meta property="og:image" content="http://www.your-domain.com/path/image.jpg" />
</head>
<body>
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Your share button code -->
<div style="height:100px; width:180px; background-color: black;" class="fb-share-button"
data-href="http://www.youtube.com"
data-layout="button_count">
</div>
<p>I even typed a paragraph to make sure that the html document is rightly configured..</p>
<script
src="https://www.facebook.com/assets.php/en_US/sdk.js" async></script>
<div class="fb-like" data-href="{your-link-url}"></div
</body>
</html>