当前位置: 首页 > article >正文

Html5代码实现动态三角形

以下是一个简单的动态圣诞树的HTML5代码示例:



<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>快速下降的六边形</title>
    <style>
        body {
            background-color: #1d1d1d;
            color: #fff;
            font-family: Arial, sans-serif;
            text-align: center;
        }
        .tree {
            width: 400px;
            margin: 0 auto;
            height: 400px;
            position: relative;
            overflow: hidden;
            background-size: cover;
        }
        .star {
            position: absolute;
            top: 50px;
            left: 50%;
            margin-left: -20px;
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 30px solid #f1c40f;
            transform: rotate(45deg);
            animation: blink .5s infinite alternate;
        }
        @keyframes blink {
            from {
                opacity: 1;
            }
            to {
                opacity: 0.5;
            }
        }
        .tree > div {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 0;
            transform-origin: bottom center;
            animation: grow 1s forwards;
        }
        .tree > div:nth-child(1) {
            animation-delay: 0s;
            background-color: #f00;
            transform: scaleY(0);
        }
        .tree > div:nth-child(2) {
            animation-delay: 0.1s;
            background-color: #0f0;
            transform: scaleY(0);
        }
        .tree > div:nth-child(3) {
            animation-delay: 0.2s;
            background-color: #00f;
            transform: scaleY(0);
        }
        .tree > div:nth-child(4) {
            animation-delay: 0.3s;
            background-color: #f1c40f;
            transform: scaleY(0);
        }
        .tree > div:nth-child(5) {
            animation-delay: 0.4s;
            background-color: #fff;
            transform: scaleY(0);
        }
        .tree > div:nth-child(6) {
            animation-delay: 0.5s;
            background-color: #f00;
            transform: scaleY(0);
        }
        .tree > div:nth-child(7) {
            animation-delay: 0.6s;
            background-color: #0f0;
            transform: scaleY(0);
        }
        .tree > div:nth-child(8) {
            animation-delay: 0.7s;
            background-color: #00f;
            transform: scaleY(0);
        }
        .tree > div:nth-child(9) {
            animation-delay: 0.8s;
            background-color: #f1c40f;
            transform: scaleY(0);
        }
        .tree > div:nth-child(10) {
            animation-delay: 0.9s;
            background-color: #fff;
            transform: scaleY(0);
        }
        @keyframes grow {
            to {
                height: 100%;
            }
        }
        @keyframes shake {
            0%, 100% {
                transform: rotateZ(0deg);
            }
            10%, 30%, 50%, 70%, 90% {
                transform: rotateZ(5deg);
            }
            20%, 40%, 60%, 80% {
                transform: rotateZ(-5deg);
            }
        }
        .tree:hover > div:nth-child(4) {
            animation: shake .5s infinite;
        }
    </style>
</head>
<body>
    <div class="tree">
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div class="star"></div>
    </div>
</body>
</html>

这个动态三角形主要由一个包含10个绿色三角形的div组成,每个三角形的高度逐渐增加,从而形成了一个三角形的形状。同时,在三角形顶部添加一个闪烁的黄色五角星,让整个三角形更加生动。
在CSS中,使用了animation和keyframes属性来实现动态效果。通过设置animation-delay属性,可以让每个三角形依次生长,从而形成一个逐渐增高的三角形。同时,通过:hover属性和animation属性,可以让三角形在鼠标悬停时摇晃,增加趣味性和互动性。
总的来说,这个动态三角形的设计方法和特点是:使用CSS的animation和keyframes属性来实现动态效果,同时通过:hover属性和animation属性增加互动性。此外,使用了背景图片和颜色来增加视觉效果,让整个三角形更加立体和生动。


http://www.kler.cn/a/4796.html

相关文章:

  • 每日学习30分轻松掌握CursorAI:多文件编辑与Composer功能
  • 基于Arduino平台,使用ESP32S3微处理器控制Servo时,内置Servo库无法使用
  • 记录一下vue2项目优化,虚拟列表vue-virtual-scroll-list处理10万条数据
  • yum系统报错:SyntaxError: multiple exception types must be parenthesized
  • C# 虚方法和抽象方法的区别,重写和重载的区别,参数修饰符(ref、out、in、params)--09
  • 电池预测 | 第21讲 基于Gamma伽马模型结合EM算法和粒子滤波算法参数估计的锂电池剩余寿命预测
  • Elasticsearch 搜索测试与集成Springboot3
  • 18005 它不是丑数
  • 算法第十九期——图论初入门
  • Java多线程
  • CSS Grid 网格布局详解
  • 【故障检测】基于 KPCA 的故障检测【T2 和 Q 统计指数的可视化】(Matlab代码实现)
  • 【华为OD机试 2023最新 】新学校选址(C++ 100%)
  • 解析springboot源码中this::selfInitialize怪异用法的含义
  • C++11右值引用
  • 华为OD机试用java实现 -【吃火锅】
  • ChatGPT辅助编程实践——常用提示词整理
  • CentOS从gcc 4.8.5 升级到gcc 8.3.1
  • 初识Kafka
  • 八. MySQL 成本计算与执行优化器优化步骤
  • 1014 福尔摩斯的约会
  • 下一代的新操作系统就是ChatGPT!
  • 最值得入手的五款骨传导耳机,几款高畅销的骨传导耳机
  • 我的第一台手提 | 关于你的第一台手提征文活动
  • PyTorch加载自己的数据集
  • 第一台电脑(创作活动水点经验)