我的 jQuery 函数生成的动画不稳定,我一直在寻找不同的 SO 解决方案,例如添加 jquery.easing,但没有运气。问题是每个 div 中的 iframe 吗?
关于如何平滑动画的任何想法?我的基本切换功能是最好的方法吗?
JSFiddle:http: //jsfiddle.net/gwLcD/8/
基本标记如下,并在页面上重复多次(每个“videotoggle”div 之间有文本块):
<div class="videotoggle">
<p><h2 class="entry-title">View a few minutes of the (title) video </h2></p>
<div class="videoblock">
<iframe width="560" height="315" src="http://www.youtube.com/embed/????????"
frameborder="0" allowfullscreen></iframe>
</div></div>
和功能:
$(document).ready(function(){
$(".videoblock").hide(); //closes all divs on first page load
$(".entry-title").click(function() {
$this = $(this); //this next code only allows one open div at a time
$content = $this.closest('.videotoggle').find(".videoblock");
if (!$this.is('.active-title')) {
$('.active-title').removeClass('active-title');
$this.addClass('active-title');
$(".videoblock:visible").slideToggle(400); //slide toggle
$content.slideToggle(400);
}
});
});