页面过渡动画效果
代码语言:html
所属分类:加载滚动
代码描述:页面过渡动画效果
代码标签: 效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");
.animation-wipe {
width: 100%;
height: 100vh;
position: fixed;
top: -100vh;
right: 0;
z-index: 100;
}
.animation-wipe .box-1,
.animation-wipe .box-2 {
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.animation-wipe .box-1:before,
.animation-wipe .box-2:before {
content: '';
display: block;
width: 100%;
height: 0;
position: absolute;
top: 0;
left: 0;
background: white;
-webkit-transition: height 0.5s 0.1s ease-out;
transition: height 0.5s 0.1s ease-out;
}
.animation-wipe .box-1:after,
.animation-wipe .box-2:a.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0