如何在特定宽度中添加jquery

时间:2015-06-02 06:07:41

标签: javascript jquery wordpress jquery-mobile skrollr

我正在使用skroller.js。但在使用此jquery之后,Touch无法在我的网站的移动版本上运行。

1 个答案:

答案 0 :(得分:0)

你想要这样的东西吗?

检查此演示:http://jsfiddle.net/aq5vb/4/

尝试调整结果框的大小,看看当窗口大小达到960px时会发生什么。

JQUERY

$(document).ready(function(){
    doThisScript();
});

$(window).on('resize', function () {
    doThisScript();
});

function doThisScript() {
    $('.content').html('Your current width is '+$(window).width());

    if($(window).width() >= '960'){
        // add your scripts here
        $('.content').css({'background':'green'});
    }    
    else{
        $('.content').css({'background':'white'});
    }
}