html:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
    <div class="box">
        <div class="cube"></div>
    </div>
</div>
</body>
</html>
 
 
 
css:
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /*1.vw:1vw等于视口宽度的1%。*/
    /*2.vh:1vh等于视口高度的1%。*/
    background: #000;
    overflow: hidden;
}
.container {
    position: relative;
    width: 100%;
    transform: rotate(-35deg);
}
.container .box {
    position: relative;
    left: -200px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% + 400px);
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0004);
    animation: animateSurface 1.5s ease-in-out infinite;
}
@keyframes animateSurface {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200px);
    }
}
.container .box .cube {
    position: relative;
    width: 200px;
    height: 200px;
    background: #03e9f4;
    box-shadow: 0 0 5px rgba(3, 233, 244, 1),
    0 0 25px rgba(3, 233, 244, 1),
    0 0 50px rgba(3, 233, 244, 0.5);
    transform-origin: bottom right;
    animation: animate 1.5s ease-in-out infinite;
}
@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    60% {
        transform: rotate(90deg);
    }
    65% {
        transform: rotate(85deg);
    }
    70% {
        transform: rotate(90deg);
    }
    75% {
        transform: rotate(87.5deg);
    }
    80%, 100% {
        transform: rotate(90deg);
    }
}
 
样式如下:

最新文章

  1. Aop动态生成代理类时支持带参数构造函数
  2. mac在终端下中用sublime text 2 打开文件
  3. PHP 知识结构
  4. javascript 多线程Web Worker不引用外部js文件的方法
  5. paip.解决access出现 -2147467259 无效的参数量
  6. JAVA虚拟机垃圾回收算法原理
  7. node.js 基础学习笔记2
  8. LINQ 101——约束、投影、排序
  9. Android开发----权限大全
  10. 新花生壳+tomcat(内网映射,无需设置路由器)建站攻略
  11. 关于&quot;zoom“ 的一点小认识
  12. hdu 4856 Tunnels(bfs+状态压缩)
  13. [转载] java多线程学习-java.util.concurrent详解(一) Latch/Barrier
  14. Objc中为何某些类的属性要设置为copy而不是strong?
  15. jvm比较详尽的内存结构
  16. Punycode
  17. sharepoint环境安装过程中几点需要注意的地方
  18. 调整Windows XP 输入法顺序
  19. spark 实现TOP N
  20. Hadoop之MapReduce学习笔记(一)

热门文章

  1. 【Android】Configuration中的locale已过时
  2. 在C#中使用Halcon开发视觉检测程序
  3. typora实现多平台发布文章
  4. python关于error: invalid command 'bdist_wheel报错的解决
  5. 【算法题型总结】--6、BFS
  6. Mqttnet内存与性能改进录
  7. echarts去除下载小图标
  8. Python从入门到精通(第2版)——pyuic5: error: no such option: -m的问题解决
  9. day08-功能实现07
  10. 【转载】SQL SERVER 表变量与临时表的优缺点