Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/69.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 悬停滑块暂停,_Jquery_Hover_Slider_Onmouseout - Fatal编程技术网

Jquery 悬停滑块暂停,

Jquery 悬停滑块暂停,,jquery,hover,slider,onmouseout,Jquery,Hover,Slider,Onmouseout,我正在尝试对一个名为 它似乎在使用下面的jquery滑块在中实际滑动图像: /** * @version $Id: $Revision * @package jquery * @subpackage lofslidernews * @copyright Copyright (C) JAN 2010 LandOfCoder.com <@emai:landofcoder@gmail.com>. All rights reserved. * @websi

我正在尝试对一个名为

它似乎在使用下面的jquery滑块在
  • 中实际滑动图像:

    /**
     * @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('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
    });
    });
    
    这是:

        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
    });
    });
    

    你在JSFIDLE中有一个例子吗?不,我不抱歉,请给我一分钟时间,我会看看我是否可以建立一个。这是它所在的实际站点。抱歉,我以为我在第一个问题中包括了它: