我在应该平滑地插入滑块的页面(#home)上运行以下代码,或者如果页面容器小于480px,则将页面保持原样。

我无法使调整大小事件能够100%顺利进行。

如果我减小窗口,脚本(js.slide.js)不会被触发,但是内容将被加载到(slide.php)中。如果我继续缩小窗口一点点,一切都会好的。

任何人都可以建议我如何使它顺利进行。代码如下

$(document).ready(function(){

if ($("#home").length > 0 ){

var homeSlideShow = {
    $promoArea: $('#promo-area'),
    $currentContent: $('#promo-area').contents(),
    $pageContainer: $('.page'),

    init: function(){
        var hSS = homeSlideShow;
        if (hSS.$pageContainer.width() > 480 ){
            hSS.setTheSlideShow();
        } else{
            hSS.$promoArea.html(hSS.$currentContent);
        }

    },

    setTheSlideShow: function(){
        var hSS = homeSlideShow;
        $.getScript(myscript_wp_vars.temp_dir + '/js/slide.js', function(){
        hSS.$promoArea.load(myscript_wp_vars.temp_dir + '/libs/slide.php #c4u-slide',
        function(){
        var options = {
                    preloader: false,
                    nextButton: true,
                    prevButton: true,
                    animateStartingFrameIn: true,
                    transitionThreshold: 250
                };

                var sequence = $("#sequence").sequence(options).data("sequence"),
                    $slideShow = $("#c4u-slide");
                });

        });
    }

};




//
//  Check page size
//
if (homeSlideShow.$pageContainer.width() > 480 ){
    homeSlideShow.setTheSlideShow();
}



//
//  On window resize
//
$(window).resize(function() {
    homeSlideShow.init();
});

}// END home.length

});//End $(document).ready(function()


在此先感谢您的协助或建议。

干杯

诺埃尔

最佳答案

根据浏览器的行为,将多次触发window.resize事件。我建议您尝试一下:

var timeoutResize;
$(window).resize(function(){
        if(typeof timeoutResize != 'undefined') clearTimeout(timeoutResize);
        timeoutResize = setTimeout(function(){homeSlideShow.init();},50);

    });

10-08 01:48