• css3文字环绕旋转


    固定数量文字环绕旋转

    
    <template>
      <div class="page">
        <div>
          <div v-for="(item, index) in [...Array(20).keys()]" :key="index" style="color: red">
            ^_^红红火火恍恍惚惚
          div>
        div>
        <div class="father">
          <span class="text">盒子1span>
          <span class="text">盒子2span>
          <span class="text">盒子3span>
          <span class="text">盒子4span>
          <span class="text">盒子5span>
          <span class="text">盒子6span>
    
          
    
          
        div>
      div>
    template>
    
    <script>
    export default {
      name: 'TextRotate',
      components: {},
    
      data() {
        return {
        }
      },
    
      computed: {},
    
      watch: {},
    
      created() {},
    
      mounted() {},
    
      methods: {}
    }
    script>
    
    <style lang='scss' scoped>
    .page {
      perspective: 700px;
      .father {
        width: 50%;
        margin: 50px auto;
        background-color: tomato;
    
        // 动画
        position: relative;
        transform-style: preserve-3d;
        // 添加动画
        animation: rotate 10s linear infinite;
    
        &:hover {
          // 鼠标悬浮动画停止
          animation-play-state: paused;
        }
    
        @keyframes rotate {
          0% {
            transform: rotateY(0);
          }
    
          100% {
            transform: rotateY(360deg);
          }
        }
    
        .text {
          background-color: green;
    
          // 动画
          position: absolute;
          top: 0;
          left: 50%;
    
          // b {
          //   color: transparent;
          // }
    
          // strong {
          //   position: absolute;
          //   top: 0;
          //   left: 0;
          //   width: 100%;
          //   height: 100%;
          //   z-index: 1;
          //   color: red;
          // }
          // span {
          //   position: absolute;
          //   top: 0;
          //   left: 0;
          //   width: 100%;
          //   height: 100%;
          //   background-color: pink;
          // }
    
          // i {
          //   position: absolute;
          //   top: 0;
          //   left: 0;
          //   transform: rotateY(180deg);
          //   z-index: -1;
          //   color: green;
          // }
    
          &:nth-of-type(1) {
            // 【问题】为什么是Z轴移动?
            // 【解答】盒子Y轴旋转60deg后。他的z轴也跟着转了
            // transform: rotateY(0deg) translateZ(300px);
            transform: translateX(-50%) rotateY(0deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: red;
          }
    
          &:nth-of-type(2) {
            // 先旋转 再移动
            // transform: rotateY(60deg) translateZ(300px);
            transform: translateX(-50%) rotateY(60deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: orange;
          }
    
          &:nth-of-type(3) {
            // 先旋转 再移动
            // transform: rotateY(120deg) translateZ(300px);
            transform: translateX(-50%) rotateY(120deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: yellow;
          }
    
          &:nth-of-type(4) {
            // 先旋转 再移动
            // transform: rotateY(180deg) translateZ(300px);
            transform: translateX(-50%) rotateY(180deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: green;
          }
    
          &:nth-of-type(5) {
            // 先旋转 再移动
            // transform: rotateY(240deg) translateZ(300px);
            transform: translateX(-50%) rotateY(240deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: blue;
          }
    
          &:nth-of-type(6) {
            // 先旋转 再移动
            // transform: rotateY(300deg) translateZ(300px);
            transform: translateX(-50%) rotateY(300deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: purple;
          }
        }
      }
    }
    style>
    
    
    • 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
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170

    不固定数量文字环绕旋转

    
    <template>
      <div class="page">
        <div>
          <div v-for="(item, index) in [...Array(20).keys()]" :key="index" style="color: red">
            ^_^红红火火恍恍惚惚
          div>
        div>
        <div class="father">
          我是father
          <span
            v-for="(item, index) in [...Array(count).keys()]"
            :key="index"
            class="text"
            :style="`transform: translateX(-50%) rotateY(${
              (360 / count) * index
            }deg) translateZ(300px)`"
          >
            盒子{{ item + 1 }}
          span>
          
    
          
    
          
        div>
      div>
    template>
    
    <script>
    export default {
      name: 'TextRotate',
      components: {},
    
      data() {
        return {
          count: 10 // 文字条数
        }
      },
    
      computed: {},
    
      watch: {},
    
      created() {},
    
      mounted() {},
    
      methods: {}
    }
    script>
    
    <style lang='scss' scoped>
    .page {
      perspective: 700px;
      .father {
        // display: inline-block; // .father 内没有内容/内容过少(即宽度小)的话:由于 .text 的宽度和 .father 宽度一样,会导致 .text 中文字换行
        width: 50%;
        margin: 50px auto;
        background-color: tomato;
    
        // 动画
        position: relative;
        transform-style: preserve-3d;
        // 添加动画
        animation: rotate 10s linear infinite;
    
        &:hover {
          // 鼠标悬浮动画停止
          animation-play-state: paused;
        }
    
        @keyframes rotate {
          0% {
            transform: rotateY(0);
          }
    
          100% {
            transform: rotateY(360deg);
          }
        }
    
        .text {
          background-color: green;
    
          // 动画
          position: absolute;
          top: 0;
          left: 50%;
    
          // b {
          //   color: transparent;
          // }
    
          // strong {
          //   position: absolute;
          //   top: 0;
          //   left: 0;
          //   width: 100%;
          //   height: 100%;
          //   z-index: 1;
          //   color: red;
          // }
          // span {
          //   position: absolute;
          //   top: 0;
          //   left: 0;
          //   width: 100%;
          //   height: 100%;
          //   background-color: pink;
          // }
    
          // i {
          //   position: absolute;
          //   top: 0;
          //   left: 0;
          //   transform: rotateY(180deg);
          //   z-index: -1;
          //   color: green;
          // }
    
          &:nth-of-type(1) {
            // 【问题】为什么是Z轴移动?
            // 【解答】盒子Y轴旋转60deg后。他的z轴也跟着转了
            // transform: rotateY(0deg) translateZ(300px);
            transform: translateX(-50%) rotateY(0deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: red;
          }
    
          &:nth-of-type(2) {
            // 先旋转 再移动
            // transform: rotateY(60deg) translateZ(300px);
            transform: translateX(-50%) rotateY(60deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: orange;
          }
    
          &:nth-of-type(3) {
            // 先旋转 再移动
            // transform: rotateY(120deg) translateZ(300px);
            transform: translateX(-50%) rotateY(120deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: yellow;
          }
    
          &:nth-of-type(4) {
            // 先旋转 再移动
            // transform: rotateY(180deg) translateZ(300px);
            transform: translateX(-50%) rotateY(180deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: green;
          }
    
          &:nth-of-type(5) {
            // 先旋转 再移动
            // transform: rotateY(240deg) translateZ(300px);
            transform: translateX(-50%) rotateY(240deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: blue;
          }
    
          &:nth-of-type(6) {
            // 先旋转 再移动
            // transform: rotateY(300deg) translateZ(300px);
            transform: translateX(-50%) rotateY(300deg) translateZ(300px); // X水平居中 Y轴旋转 Z轴平移形成圆
            background-color: purple;
          }
        }
      }
    }
    style>
    
    
    • 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
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182

    效果图

    在这里插入图片描述

  • 相关阅读:
    UiPath:一家由生成式AI驱动的流程自动化软件公司
    几种派(Pi)比较及相关接口知识
    Python进阶(一) - 图形界面编程Tkinter(1)
    qrcode 生成二维码(jQuery、vue)
    Elasticsearch实现检索词自动补全(检索词补全,自动纠错,拼音补全,繁简转换) 包含demo
    初始C语言-1(数据类型、变量、常量、变量的作用域和生命周期、字符串+转义字符+注释)
    springboot+校园交友平台小程序 毕业设计-附源码191733
    SSL/TLS介绍以及wireshark抓包TLS Handshake报文
    salesforce零基础学习(一百二十八)Durable Id获取以及相关概念浅入浅出
    RHCSA的一些简单操作命令
  • 原文地址:https://blog.csdn.net/m0_53562074/article/details/134337855