我正在开展一个项目,我必须在其中实现Flash卡,用户可以添加图像或文本,然后像电源点演示一样在线播放,例如像This
我使用过Jquery Cycle插件,但它没有像这个链接那样播放文件,任何人都可以建议我如何实现这个功能?下面是我的代码
<span id="prev">Prev</span></a> <a href="javascript:void(0);"><span id="next">Next</span></a>
<div class="pics" id="slideshow">
@foreach (var item in Model.CardContent)
{
if (item.ImagePath != null)
{
<img src="../../FlashCardsImages/@item.ImagePath" width="200" height="200" />
}
<p>@item.Answer</p>
}
</div>
$('#slideshowsssss').cycle({ fx: 'scrollHorz', timeout: 0, prev: '#prev', next: '#next' });
此致