Jquery .hover滑块暂停,

时间:2012-11-20 14:15:17

标签: jquery hover slider onmouseout

我正在尝试将hover暂停实现为一个名为的wordpress插件 http://wordpress.org/extend/plugins/easing-slider/

似乎使用以下jquery滑块实际滑动<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
});
});

0 个答案:

没有答案