• vue3 物体飘落效果


    html

    1. <template>
    2. <div class="content">
    3. <transition-group name="petal-fall" tag="ul">
    4. <img
    5. v-for="(petal, index) in petals"
    6. :key="index"
    7. class="petal"
    8. :src="petal.image"
    9. :style="petal.style"
    10. />
    11. transition-group>
    12. div>
    13. template>

    js

    css

    1. .content{
    2. background-image: url(../../../assets/web/service/BackgroundService.png);
    3. background-repeat: no-repeat;
    4. background-size:cover;
    5. width:100%;
    6. height:100vh;
    7. position: relative;
    8. .petal {
    9. position: absolute;
    10. width: 5vw;
    11. height: 5vw;
    12. animation: fallAnimation linear infinite;
    13. }
    14. @keyframes fallAnimation {
    15. 0% {
    16. transform: translateY(-100vh);
    17. }
    18. 100% {
    19. transform: translateY(110%);
    20. }
    21. }
    22. }

  • 相关阅读:
    5G创新突破 | 紫光展锐5G芯片全球首发R17 NR广播端到端业务演示
    Pytest----通过设置重复路径可以重复执行多次
    黑马java笔记-java部分-java基础
    测试 开发 5 年从外包 18K 跳槽去字节 28K+12,啃完这份笔记你也可以
    Unity之OpenXR+XR Interaction Toolkit快速监听手柄任意按键事件
    PIGOSS BSM:网络大屏展现功能与特色全面解析
    日立F-4700FL数据分析实验报告
    TablePlus for Mac/Win:开启高效数据开发新纪元
    亚马逊API接口解析,实现获得AMAZON商品详情
    java框架常见的面试题
  • 原文地址:https://blog.csdn.net/m0_59570698/article/details/134331888