1. 程式人生 > >軟體盤彈出背景圖上移

軟體盤彈出背景圖上移

$(function(){
$(“input”).each(function(){
$(this).on(“focus”,function(){
// alert(1)
var winHeight = api.winHeight;
$(“body”).css(“height”,winHeight+“px”);
$(".gesture_btn.gest_login").hide();
});
$(this).on(“blur”,function(){
// alert(2)
$(“body”).css(“height”,“100%”);
$(".gesture_btn.gest_login").show();
});
})
})