我正在使用skroller.js。但在使用此jquery之后,Touch无法在我的网站的移动版本上运行。
答案 0 :(得分:0)
你想要这样的东西吗?
检查此演示:http://jsfiddle.net/aq5vb/4/
尝试调整结果框的大小,看看当窗口大小达到960px时会发生什么。
$(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'});
}
}