<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>从左侧渐入</title>
<style>
/* 从左侧渐入 */
div{
background-color: rgb(138, 188, 209);
width: 600px;
height: 100px;
margin: 10px;
}
.fade{
opacity: 0;
transform: translateX(-600px);
}
.left-in {
/* 定义动画 */
animation-duration: 1000ms; /* 动画时间 */
animation-name: left-in; /* 关键帧名字 */
}
/* 定义关键帧 */
@keyframes left-in {
0% {
opacity: 0;
transform: translateX(-600px);
}
100% {
opacity: 1;
transform: translateX(0px);
}
}
.right-in {
/* 定义动画 */
animation-duration: 1000ms; /* 动画时间 */
animation-name: right-in; /* 关键帧名字 */
}
/* 定义关键帧 */
@keyframes right-in {
0% {
opacity: 0;
transform: translateX(600px);
}
100% {
opacity: 1;
transform: translateX(0px);
}
}
</style>
</head>
<body>
<div style="height: 800px">box</div>
<div class="fade fade-left">模块一</div>
<div class="fade fade-left">模块二</div>
<div class="fade fade-left">模块三</div>
<div class="fade fade-left">模块四</div>
<div class="fade fade-right">模块五</div>
<div class="fade fade-left">模块六</div>
<div class="fade fade-right">模块六</div>
<div class="fade fade-left">模块六</div>
<div class="fade fade-right">模块六</div>
<div class="fade fade-left">模块六</div>
<div class="fade fade-right">模块六</div>
<div class="fade fade-left">模块六</div>
<script>
function fadeIn () {
window.onscroll = function () {
// //div距离顶部的距离
let fadeInBox = document.getElementsByClassName('fade');
let i = 0;
while (i < fadeInBox.length) {
// 遍历所有匹配的元素
let toBox = fadeInBox[i];
let toTop = toBox.getBoundingClientRect().top;
// 获取每个元素的class全部属性
let boxClass = fadeInBox[i].className;
console.log(boxClass);
if (toTop<800 && boxClass.includes('fade-left')) {
toBox.classList.add('left-in');
toBox.classList.remove('fade','fade-left');
}else if (toTop<800 && boxClass.includes('fade-right')) {
toBox.classList.add('right-in');
toBox.classList.remove('fade','fade-right');
}
i++;
fadeIn();
}
}
}
fadeIn();
</script>
</body>
</html>
js渐入效果
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 前提是引用animate.csshtml代码:例如,在想要渐入的元素块上添加‘animated’,在属性type中...
- var style = document.styleSheets[0];console.log(style)doc...