我有一些 jQuery,但希望它只在 iPad 处于纵向模式时运行,悬停 iPad(在横向模式下)处理脚本......
var portraitWidth = $(window).width(); //detect the iPad in Portrait orientation
if (portraitWidth < 769) {
$('.model-selector h2:first-child').toggle(function () {
$(this).parent().animate({
top: '-138px'
}, 250);
}, function () {
$('.model-selector').animate({
top: '-45px'
}, 250);
});
}
我究竟做错了什么?
提前致谢..