• vue3+scss开启写轮眼


    一、相关技术

    采用vue3+vite+scss的技术内容进行开发

    二、使用步骤

    1.安装依赖

    代码如下:

    npm install sass
    
    • 1

    2.眼球

    首先我们根据需要 将眼睛的基础形状描绘出来,基础形状是由外眼线、内眼线以及中间的瞳孔组成

    <div class="outLine">
        <div class="innerLine">
            <div class="eyeBall">div>
        div>
    div>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    //外眼线
    .outLine {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: red;
      border: 3px solid #000;
      display: flex;
      justify-content: center;
      align-items: center;
      //内眼线
      .innerLine {
        width: 50px;
        height: 50px;
        position: relative;
        border-radius: 50%;
        border: 3px solid #000;
        display: flex;
        justify-content: center;
        align-items: center;
    	//瞳孔
        .eyeBall {
          width: 20px;
          height: 20px;
          border-radius: 50%;
          background: #000;
        }
      }
    }
    
    • 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

    3 勾玉

    要绘制一个勾玉,先对勾玉的形状进行分析,它是由一个圆和一个勾组成,因此我们可以使用css中的伪类来实现
    在这里插入图片描述
    定义一个div,类名为gouyu

    <template>
        <div class="gouyu"></div>
    </template>
    
    <style lang="scss" scoped>
    //默认圆
    .gouyu {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #000;
      position: absolute;
      top: 12px;
    }
    //添加勾
    .gouyu:before {
      position: absolute;
      content: "";
      width: 12px;
      height: 10px;
      left: 2px;//左偏移量
      top: -6px;//上偏移量
      border: 0 solid transparent;//取消其余边框
      border-top: 6px solid #000000;//上边框
      border-radius: 20px 0 0 0;//上边框圆角
      transform: rotate(77deg);//勾旋转角度
    }
    
    • 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

    4 旋转动画

    要实现勾玉绕瞳孔旋转的效果,我们可以使用css3中的动画实现
    在这里插入图片描述

    .gouyu {
      transform: rotate(0deg);//默认开始位置
      transform-origin: 50% 36px;//旋转中心,如不设置默认自旋转
      animation: 3s gouyuRotate-1850a03c linear infinite;//执行动画的时间,事件,无限次数
    }
    @keyframes gouyuRotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    5 综合

    结合二者即可实现以下效果,源代码在此
    在这里插入图片描述

  • 相关阅读:
    C++ 核心编程(2)
    已解决ModuleNotFoundError: No module named ‘Workbook‘
    vite-react修改antd得prefix
    GEEM2引擎微端架设基本教程
    OpenCV、PIL知识点日常总结【持续更新......】
    经典题记录 字符串相加/相乘
    stm32寄存器开发
    最新漏洞:Spring Framework远程代码执行漏洞
    Pytorch实现基于LSTM的情感分析
    安装Linux虚拟机——以ubuntukylin-16.04.7-desktop-amd64.iso为例
  • 原文地址:https://blog.csdn.net/weixin_43575792/article/details/132877318