作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先,我对 JS 很陌生。我正在建立一个网站,它有一个介绍。此介绍动画必须放置在不同的页面中,结束后将自动加载下一个网页。
<body onload="setTimeout(
function(){
window.location.href = 'file:///C:/Users/skatto/Desktop/art%20contest/art_contest_page.html';
}, 32000 )">
这是我在我的 html 文件上使用的自动加载下一页的脚本,但它非常“尖锐”和粗糙,我怎么能添加淡入淡出动画?为了更顺畅
最佳答案
一个简单的 CSS 就可以做到这一点。为什么要使用脚本?将动画 fadeIn
添加到您想要在加载前淡入的任何页面主体。
body {
animation: fadeIn 0.5s linear;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
<div>
Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>Something
<br/>
</div>
关于JavaScript 在页面之间淡入淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41015842/
我是一名优秀的程序员,十分优秀!