很炫的可以隐藏的登录框
[1].[代码] [Java]代码 跳至 [1]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<script src=
"http://www.lanrentuku.com/js/jquery-1.2.6.pack.js"
type=
"text/javascript"
></script>
<script language=
"javascript"
>
$(function(){
$(
"#toggleLogin"
).toggle(function(){
$(
"#login"
).parent(
"div"
).animate({ height :
105
} ,
520
);
$(
"#login"
).animate({marginTop :
0
} ,
500
);
$(
this
).blur();
},function(){
$(
"#login"
).parent(
"div"
).animate({ height :
0
} ,
500
);
$(
"#login"
).animate({marginTop : -
105
} ,
520
);
$(
this
).blur();
});
$(
"#closeLogin"
).click(function(){
$(
"#login"
).parent(
"div"
).animate({ height :
0
} ,
500
);
$(
"#login"
).animate({marginTop : -
105
} ,
520
);
});
})
</script>
|