0
我有一些jQuery的,但希望它只能運行當iPad處於縱向模式時,將鼠標懸停在iPad(橫向模式)處理腳本...檢測的iPad在縱向與jQuery
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);
});
}
我究竟做錯了什麼?
在此先感謝..