我正在使用这个插件:http ://wordpress.org/extend/plugins/wpmbytplayer/ 但是,当我运行以下 jQuery 以从标题中为框设置动画时,背景视频会停止并冻结。有谁知道为什么?
jQuery(function($) {
jQuery('#open').click(function(){
jQuery('#pull_down_content').animate({'top':'-25px'},1000);
jQuery('#open').fadeTo('slow', 0);
});
jQuery('#close').click(function(){
jQuery('#pull_down_content').animate({'top':'-800px'},1000);
jQuery('#open').fadeTo('slow', 1);
});
});