• 毛玻璃动画交互效果


    效果展示

    在这里插入图片描述

    页面结构组成

    从上述的效果展示页面结构来看,页面布局都是比较简单的,只是元素的动画交互比较麻烦。

    第一个动画交互是两个圆相互交错来回运动。第二个动画交互是三角绕着圆进行 360 度旋转。

    CSS 知识点

    • animation
    • animation-delay
    • 绝对定位布局

    实现整体页面布局及动画交互元素的样式

    <div class="container">
      <div class="loader one">
        <span>span>
        <span>span>
      div>
    
      <div class="loader two">
        <span>span>
        <span>span>
      div>
    div>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    .container .loader {
      position: relative;
      width: 150px;
      height: 150px;
      margin: 100px;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    实现第一个动画交互的元素样式

    .container .loader.one span {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      background: #5989ff;
      border-radius: 50%;
      animation: animate ease-in-out 2s infinite;
    }
    
    .container .loader.one span:nth-child(2) {
      background: rgba(56, 109, 241, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      animation-delay: -1s;
    }
    
    /* 底部阴影 */
    .container .loader.one span::before {
      content: "";
      position: absolute;
      bottom: -100px;
      left: -20%;
      width: 140%;
      height: 40px;
      border-radius: 50%;
      background: radial-gradient(rgba(0, 0, 0, 0.4), transparent, transparent);
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30

    实现第一个动画交互的动画

    第一个动画是两个圆来回交互运动。

    @keyframes animate {
      0%,
      100% {
        transform: translateX(-80px);
      }
      50% {
        transform: translateX(80px);
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    实现第二个动画交互的元素样式

    第二个动画交互时,存在元素之间的层次关系,所以我们需要采用绝对定位布局。

    .container .loader.two {
      position: relative;
      width: 180px;
      height: 180px;
    }
    
    .container .loader.two span:nth-child(1) {
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      bottom: 10px;
      background: rgba(233, 30, 90, 0.05);
      border-radius: 50%;
      backdrop-filter: blur(10px);
      z-index: 2;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .container .loader.two span:nth-child(2) {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      overflow: hidden;
      border-radius: 50%;
      animation: rotateCircle 1s linear infinite;
    }
    
    /* 通过移动伪元素形成红色三角部分元素 */
    .container .loader.two span:nth-child(2)::before {
      content: "";
      display: block;
      position: absolute;
      top: -50%;
      left: -50%;
      width: 100%;
      height: 100%;
      background: #ff6198;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42

    实现第二个动画交互的动画

    第一个动画是两个圆来回交互运动。

    @keyframes rotateCircle {
      0% {
        transform: rotate(0);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    完整代码下载

    完整代码下载

  • 相关阅读:
    第06章 Tableau仪表板和故事
    Python Web开发记录 Day9:Django part3 用户管理
    c++STL概述
    macOS 安装软件提示 “已损坏,无法打开。 您应该将推出磁盘映像” 或 “已损坏,无法打开。 您应该将它移到废纸篓”,解决办法
    《推进农业水价综合改革的意见》解读
    单例模式Singleton
    Web标准
    9-Dubbo架构设计与底层原理-集群容错之 Directory
    【scikit-learn基础】--『监督学习』之 随机森林回归
    1163 Dijkstra Sequence – PAT甲级真题
  • 原文地址:https://blog.csdn.net/qq_33003143/article/details/133467107