我正在尝试对名为 http://wordpress.org/extend/plugins/easing-slider/的 wordpress 插件实现悬停暂停。
似乎正在使用以下 jquery 滑块来实际滑动 a 中的图像<li><img src=""> </li>
:
/**
* @version $Id: $Revision
* @package jquery
* @subpackage lofslidernews
* @copyright Copyright (C) JAN 2010 LandOfCoder.com <@emai:landofcoder@gmail.com>. All rights reserved.
* @website http://landofcoder.com
我尝试了几种不同的选项,但无法使其正常工作
jQuery(document).ready(function(){
jQuery("#lofslidecontent45").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
jQuery("#lofslidecontent45").hover(
function() {
jQuery("#lofslidecontent45").lof-main-wapper("rotate",0,true);
},
function() {
jQuery("#lofslidecontent45").lof-main-wapper("rotate",5000,true);
}
)
和这个:
jQuery(document).ready(function(){
jQuery('ul.lof-main-wapper').mouseover(function() {
jQuery(this).stop(true, true);
});
jQuery ('ul.lof-main-wapper').mouseout(function() {
if (jQuery(this).is(":visible") == true) {
InOut(jQuery(this));
}
});
});
和这个:
jQuery(function(){
jQuery("#lofslidecontent45").slides({
hoverPause: true
});
});