扩展视频播放器,例如 CNN 网站,最好基于 jQuery
我想知道是否有人知道基于 jquery 或其他的脚本/插件,可以用来实现 CNN.com 上可以找到的效果。 我说的是用小缩略图表示的视频,单击时会扩展为文本并播放。
我绝不是 JS 大师,我和 flash 也不是最好的朋友,但我也不是完全一无所知。
本质上,我正在寻找一种方法来单击缩略图、展开 swf,并在再次收缩时停止它。类似的事情。
欢迎任何想法、提示或见解!
I'm wondering if anyone knows of a script/plugin, jquery-based or otherwise, which could be used to achive the effect that can be found on CNN.com.
I'm talking about the videos that are representet by a small thumbnail, that when clicked expands in to the text and plays.
I'm by no means a JS-guru, and me and flash isn't the bestest of friends, but I'm not completly cluess.
Essentially, what im looking for is a way to click a thumbnail, expand a swf, and stop it if i contract it again. something like that.
ANY ideas, tips or insights are welcome!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的方法是在单击时用 Flash 视频替换
div
的内容:HTML
jQuery
这是一个简单的示例,但它可以是改进了很多,也许可以通过插入图像作为
div
背景,将代码保存在元素的缓存中(使用.data()
),添加点击事件所有具有特定类的div
...希望有帮助:)
A simple approach would be replacing the content of a
div
with the Flash video when clicked:HTML
jQuery
This is a simple example but it can be improved a lot, maybe by inserting the image as the
div
background, saving the code in the cache of the element (with.data()
), adding the click event to alldiv
with a specific class...Hope it helps :)