我说话可能看起来很傻,但我在使用 Jquery 时遇到了困难。我的目标是申请。菜单上的“隐藏”和“.mes”dropbox,只有在屏幕小于等于320px(竖屏智能手机)时才会出现dropbox。问题是当手机处于纵向并且我更改为横向(480 像素)时,菜单不会出现,也不会隐藏 Dropbox。保留保管箱。
我会做任何事情来改变独立屏幕的初始位置。
JSFIDDLE(错误,但有效):http: //jsfiddle.net/eJZSd/
$(document).ready(function () {
var width = $(window).width();
if(width<400){
$("#Menu_Drop").show();
$("aside").hide();
}
else{
$("#Menu_Drop").hide();
$("aside").show();
}
$('img').on('dragstart', function(event) { event.preventDefault(); });
$('.flexslider').flexslider({
animation: 'fade',
slideshow: true,
touch: true,
keyboard: true,
slideshowSpeed: 7000,
animationSpeed: 500,
controlNav: false,
directionNav: false,
before: function(){
$("#Mensagem").animate({ opacity: '0', });
$(".triangulo").animate({ opacity: '1', });
$(".triangulo").animate({ borderWidth: '0px', });
},
after: function(){
if(width<500){
$(".triangulo").animate({ borderWidth: '10px', });
}
else{
$(".triangulo").animate({ borderWidth: '70px', });
}
$("#Mensagem").animate({ opacity: '1', });
},
});
});