我正在尝试在我的网站(Rails App)中使用 FadeIn 和 FadeOut 效果。但是 FadeOut 效果似乎存在问题(文本没有像 Wix 演示网站中那样缓慢淡出)。这是使用的脚本!
<script>
$(document).ready(function() {
$("body").css("display", "none");
$("body").fadeIn(2000);
$("a.transition").click(function(event){
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});