如果width设置为600px或更高,我想在JavaScript下面执行。如何设置max-width条件?
$(function() {
$('#nav li a').bind('click',function(event){
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1500,'easeInOutExpo');
event.preventDefault();
});
});
答案 0 :(得分:0)
如果是视口宽度,你可以在点击回调中执行类似的操作。
if ($(window).width() < 600) {
return;
}