我正在使用名为prettyPhoto的插件。除了视频没有加载外,它似乎很好。我对电影和/或闪光灯没有多少经验。
这是我的代码
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" charset="utf-8" />
<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
<script src="js/swfobject.js" type="text/javascript"></script>
jQuery
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto({
autoplay: true, /* Automatically start videos: True/False */
});
和标记
<a href="swf/player.swf?url=http://flyfishinggreyriver.com/NFF.flv?width=792&height=294" rel="prettyPhoto[flash]" title="teaser" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image6','','Images/video_tour2.jpg',1)"><img src="Images/video_tour1.jpg" alt="take a video tour" name="Image6" width="340" height="81" border="0" id="Image6" /></a>
这是页面链接,(这是视频导览链接) http://www.flyfishinggreyriver.com/fly_fishing3.html 谢谢!
答案 0 :(得分:0)
由于您将FLV路径作为查询字符串参数传递,因此需要对其进行转义。使用转义路径可以正常工作。