前言:哈喽,大家好,今天给大家分享html+css 绚丽效果!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕
文章目录
- 效果
- 原理解析
- 1.这是一个看上去背景变==渐变彩色==的按钮。
- 1.1 每个按钮是2部分组成,button和span。
- 1.2 button是渐变的背景。
- 1.3 span是背景黑色,加个过渡。
- 1.4 按钮hover时,把上面span的黑色背景去掉,就ok了。
- 2.具体的变换参数,直接==看代码==,可以一键复制,查看效果
- 上代码,可以直接复制使用
- 目录
- html
- css
效果
原理解析
1.这是一个看上去背景变渐变彩色的按钮。
1.1 每个按钮是2部分组成,button和span。
1.2 button是渐变的背景。
1.3 span是背景黑色,加个过渡。
1.4 按钮hover时,把上面span的黑色背景去掉,就ok了。
/*当hover时*/
.butBgColor:active,
.butBgColor:hover {
outline: 0;
}
.butBgColor:hover span {
background: none;
}
2.具体的变换参数,直接看代码,可以一键复制,查看效果
上代码,可以直接复制使用
目录
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">
<button class="butBgColor" role="button"><span class="text">求点赞</span></button>
<button class="butBgColor" role="button"><span class="text">求关注</span></button>
<button class="butBgColor" role="button"><span class="text">求收藏</span></button>
<button class="butBgColor" role="button"><span class="text">求转发</span></button>
</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;
}
.butBgColor {
align-items: center;
background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
border: 0;
border-radius: 8px;
box-shadow: rgba(14, 8, 22, 0.2) 0 15px 30px -5px;
box-sizing: border-box;
color: #ffffff;
display: flex;
font-family: Phantomsans, sans-serif;
font-size: 2em;
justify-content: center;
line-height: 1em;
max-width: 100%;
min-width: 140px;
padding: 3px;
text-decoration: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
white-space: nowrap;
cursor: pointer;
}
.butBgColor span {
background-color: rgb(22, 17, 61);
padding: 16px 24px;
border-radius: 6px;
width: 100%;
height: 100%;
transition: 300ms;
}
/*当hover时*/
.butBgColor:active,
.butBgColor:hover {
outline: 0;
}
.butBgColor:hover span {
background: none;
}
@media (min-width: 768px) {
.butBgColor {
font-size: 24px;
min-width: 196px;
}
}
到此这篇文章就介绍到这了,更多精彩内容请关注本人以前的文章或继续浏览下面的文章,创作不易,如果能帮助到大家,希望大家多多支持宝码香车~💕
更多专栏订阅推荐:
👍 html+css+js 绚丽效果
💕 vue
✈️ Electron
⭐️ js
📝 字符串
✍️ 时间对象(Date())操作