css实现四种按钮悬停样式动画效果
代码语言:html
所属分类:悬停
代码描述:css实现四种按钮悬停样式动画效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Creepster&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nixie+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Graduate&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
:root {
--btn-width: 150px;
--btn-height: 75px;
--first-btn-squeeze: 0.9;
--deep-blue: #101048;
--orange: #f29e04;
--swamp: #239702;
--deep-purple: #6f0397;
--inactive-blue: #1a647d;
--active-blue: #3fc6f4;
--red: #d20404;
--light-orange: #fff1c5;
--yellow: #ffef02;
--hot-pink: #ff0563;
--default: 0.5s;
--fast: 0..........完整代码请登录后点击上方下载按钮下载查看
网友评论0