0

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

0 に答える 0