当前位置:   article > 正文

css旋转,附源代码_css公转代码

css公转代码

完整代码(可运行)

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .box {
            position: relative;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: orange;
            overflow: hidden;
            animation: rotate 2s linear infinite;
        }

        .box>div {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 50%;
            transform-origin: 0 100%;
        }

        .box1 {
            transform: rotate(0deg);
            background-color: lavenderblush;
        }

        .box2 {
            transform: rotate(180deg);
            background-color: lightgreen;

        }

        @keyframes rotate {
            0% {}

            100% {
                transform: rotate(360deg);
            }
        }
    </style>

</head>

<body>
    <div class="box">
        <div class="box1"></div>
        <div class="box2"></div>
    </div>
</body>

</html>
  • 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
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58

关键代码

.box{
	animation: rotate 2s linear infinite;
}
  • 1
  • 2
  • 3
  @keyframes rotate {
            0% {}
            100% {
                transform: rotate(360deg);
            }
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/371411
推荐阅读
相关标签
  

闽ICP备14008679号