css+js实现颜色点击选择动画效果代码

代码语言:html

所属分类:选择器

代码描述:css+js实现颜色点击选择动画效果代码,选择颜色圆点,左右两侧颜色切换并抖动一下。

代码标签: css js 颜色 点击 选择 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

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

<head>
  <meta charset="UTF-8">
  

  
  
  
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  font-family: "Inter";
  font-size: 16px;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  width: 100%;
  background: #0c0c0b;
  overflow: hidden;
  display: grid;
  pla.........完整代码请登录后点击上方下载按钮下载查看

网友评论0