div+css实现炫酷按钮走光动画效果代码

代码语言:html

所属分类:动画

代码描述:div+css实现炫酷按钮走光动画效果代码

代码标签: div css 炫酷 按钮 走光 动画

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

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

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

  
  
<style>
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  --purple: #5b01ff;
  --dark-purple: #5c4dff;
  --white: #fff;
}

@font-face {
  font-family: "slava";
  src: url("//repo.bfw.wiki/bfwrepo/font/slava-antipov.ttf");
}

@property --c1 {
  syntax: "<percentage>";
  initial-value: 1%;
  inherits: false;
}

@property --c2 {
  syntax: "<percentage>";
  initial-value: 25%;
  inherits: false;
}

@property --t1 {
  syntax: "<percentage>";
  initial-value: 6%;
  inherits: false;
}

@property --t2 {
  syntax: "<percentage>";
  initial-.........完整代码请登录后点击上方下载按钮下载查看

网友评论0