前言:哈喽,大家好,今天给大家分享html+css 绚丽效果!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕
目录
- 一、效果
- 二、原理解析
- 1.这是一个,==hover出现2个选择按钮==的效果。每个按钮都是由4部分组成,1个div,1个div的伪元素before,2个button,如下图。
- 1.1 div元素是==最外层==的,位置和代码。
- 1.2 div:before是白底黑字,也是默认的==文字==,位置和代码。
- 1.3 ==2个button==按钮的位置和代码。
- 1.4 按钮==组成==关系。
- 2.当按钮上有鼠标时,hover效果触发,最上层的div:before隐藏,运行==transition过渡动画==效果。
- 3.具体的变换参数,直接==看代码==,可以一键复制,查看效果
- 三、上代码,可以直接复制使用
- 目录
- html
- css
一、效果
二、原理解析
1.这是一个,hover出现2个选择按钮的效果。每个按钮都是由4部分组成,1个div,1个div的伪元素before,2个button,如下图。
1.1 div元素是最外层的,位置和代码。
1.2 div:before是白底黑字,也是默认的文字,位置和代码。
1.3 2个button按钮的位置和代码。
1.4 按钮组成关系。
2.当按钮上有鼠标时,hover效果触发,最上层的div:before隐藏,运行transition过渡动画效果。
/*当hover时*/
.butWrap:hover::before {opacity: 0;pointer-events: none;
}
3.具体的变换参数,直接看代码,可以一键复制,查看效果
三、上代码,可以直接复制使用
目录
html
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>html+css 实现hover选择按钮</title><link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container"><h1 style="text-align: center;color:#fff;margin-bottom: 50px;padding-top: 50px; text-shadow: 0 3px 3px #4c6ed3;">html+css 实现hover选择按钮</h1><div class="wrapper"><div class="butWrap"><button class="butLeft">必须</button><button class="butRight">一定</button></div><div class="butWrap"><button class="butLeft">必须</button><button class="butRight">一定</button></div><div class="butWrap"><button class="butLeft">必须</button><button class="butRight">一定</button></div><div class="butWrap"><button class="butLeft">必须</button><button class="butRight">一定</button></div></div>
</div></body>
</html>
css
* {margin: 0;padding: 0;box-sizing: border-box;
}:root {--btn-bg-color: #fff;--font-color-black: #000;--btn-bg-color-hover: #FF5833;
}.container {min-height: 100vh;background-color: #0e1538;
}.wrapper {display: flex;flex-direction: column;align-items: center;gap: 40px;
}.butWrap {font-size: 1.2rem;cursor: pointer;position: relative;display: flex;align-items: center;transition: 1s;overflow: hidden;
}.butWrap::before {content: '求点赞';display: flex;justify-content: center;align-items: center;position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;z-index: 10;background: #fff;transition: 0.2s;border-radius: 3px;font-size: 16px;
}.butWrap:nth-child(2)::before {content: '求关注';
}.butWrap:nth-child(3)::before {content: '求收藏';
}.butWrap:nth-child(4)::before {content: '求转发';
}.butWrap > button {width: 50%;padding: 10px 15px;border: 0px;color: white;font-size: 1rem;font-weight: 700;cursor: pointer;outline: none;
}.butLeft {background: rgb(217, 20, 20);border-radius: 5px 0px 0px 5px;
}.butRight {background: rgb(29, 161, 242);border-radius: 0px 5px 5px 0px;
}.butWrap > button:hover {filter: brightness(400%);
}
/*当hover时*/
.butWrap:hover::before {opacity: 0;pointer-events: none;
}
到此这篇文章就介绍到这了,更多精彩内容请关注本人以前的文章或继续浏览下面的文章,创作不易,如果能帮助到大家,希望大家多多支持宝码香车~💕
更多专栏订阅推荐:
👍 html+css+js 绚丽效果
💕 vue
✈️ Electron
⭐️ js
📝 字符串
✍️ 时间对象(Date())操作