1
b821025551b 2015-05-11 13:33:25 +08:00
|
2
coosir 2015-05-11 13:54:36 +08:00
AJAX
|
3
lzxgh621 2015-05-11 14:14:44 +08:00
js动画
|
4
MaiCong 2015-05-11 14:41:54 +08:00
|
5
cxe2v 2015-05-11 14:43:25 +08:00
用jquery的slide方法,或者animation方法
|
7
yumijie OP @b821025551b 谢谢,我淡入淡出效果不是我想要的
|
8
yumijie OP 谢谢诸位!菜鸟学这个真是伤脑筋
|
9
liuhaotian 2015-05-11 15:54:07 +08:00
|
11
FastMem 2015-05-11 16:05:29 +08:00
$(function(){
$(".btn").on('click',function() { $(".left-door").animate({left:'-1000px'},1000); $(".right-door").animate({right:'-1000px'},1000); $(".page-content").show(); }) }); 照着楼上的,我用animate写了一个 |
12
FastMem 2015-05-11 16:06:52 +08:00
|