css属性animation实现页面滚动元素入场动画效果代码

代码语言:html

所属分类:加载滚动

代码描述:css属性animation实现页面滚动元素入场动画效果代码

代码标签: css 属性 animation 页面 滚动 元素 入场 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Animate On Scroll</title>
    <style>
        body {
            min-height: 200vh; /* 为了创造滚动效果 */
            padding: 20px;
            font-family: Arial, sans-serif;
        }

        .block {
            width: 300px;
            height: 200px;
            background-color: #3498db;
            margin: 50px auto;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
           
           
        }

        @keyframes appear {
            from {
                opacity: 0;
                clip-path: inset(100% 100% 0 0);
            }
            to {
                opacity: 1;
                clip-path: inset(0 0 0 0);
            }
        }

        .........完整代码请登录后点击上方下载按钮下载查看

网友评论0