|
导航点击切换,网页切换弹跳效果,代码如下 - $(".nav li a").click(function(){ if( $(this).attr("target") != "_blank"){ if( $(this).attr("href") != "javascript:;" && $(this).attr("href") != "#" ) return openwork($(this).attr("href")); }});
- function openwork(url){ $(".wrap").css({'-webkit-animation':"bounceIn 1s .25s ease both",'-moz-animation':'bounceIn 1s .25s ease both','animation':'bounceIn 1s .25s ease both'}); $("body").append("<div class='page-cover'></div>").css("position","relative"); $(".page-cover").delay(1600).animate({"height":$(document).height()},800,null,function(){ location.href = url; }); return false};
|