facebook fbml 应用程序 - 如何使视频自动播放?
我正在我的 Facebook 页面中写下 fbml,并且我希望视频在页面加载时自动播放。我正在使用下面的代码。但这对我不起作用。我在这里做错了什么吗?
<fb:swf swfbgcolor="000000" imgstyle="border-width:3px; border-color:white;" swfsrc='http://www.youtube.com/v/xxxxxxxxxxx&autoplay=1' imgsrc='http://img59.imageshack.us/img59/1129/16631569.jpg' width='398' height='259' />
I am writing down fbml in my facebook page, and I want the video to be autoplay while page loads. I am using below code. But it is not working for me. Am I doing anything wrong here?
<fb:swf swfbgcolor="000000" imgstyle="border-width:3px; border-color:white;" swfsrc='http://www.youtube.com/v/xxxxxxxxxxx&autoplay=1' imgsrc='http://img59.imageshack.us/img59/1129/16631569.jpg' width='398' height='259' />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想自动播放 Flash 对象,可以使用 fb:swf 标记的
waitforclick
属性并将其值设置为false
。如需了解更多信息,请查看官方文档。请注意,主要出于安全原因,配置文件中不允许自动播放,因此不要尝试在那里使用它。
If you want to autoplay a flash object you can use the
waitforclick
attribute of the fb:swf tag and set its value tofalse
. For more info please check the official documentation.Be careful, autoplaying is not allowed in profiles mainly for security reasons, so don't try to use it there.