CSS技巧专栏:一日一例 17 -纯CSS实现抖音故障风按钮特效
今天这个案例,是大家非常熟悉的风格。
案例图片
案例分析
这个案例,基本上没有特别大难度。就是利用关键帧动画实现文字阴影的抖动。CSS样式代码量非常少就能搞定了。
布局代码
<button class="base">我故障我快乐</button>
基础样式
:root{
--main-bg-color: #000;
--color:#000;
--hover-color:#993399;
}
button{
margin: 0.3em;
outline: 0;
border: none;
}
.base{
position: relative;
padding: 1rem 3rem; /* 用 padding 撑起按钮的宽度和高度 ,并确保了按钮文字水平方向居中 */
font-family: "微软雅黑", sans-serif;
font-size: 1.5rem;
line-height: 1.5rem; /* 行高和字号大小相等,可以实现按钮文字在按钮内垂直居中 */
font-weight:700;
color: var(--color); /* 文字颜色为预定义的前景色 */
cursor: pointer; /* 鼠标移动到按钮上时候的形状:手型 */
user-select: none; /* 让用户不能选择按钮上的文字 */
white-space: nowrap; /* 避免英文单词间的空格导致文字换行 */
border-radius: 2rem;
text-decoration: none;
text-transform:uppercase; /* 字母自动修正为大写 */
transition: all .5s; /* 按钮响应动画效果的持续时间 */
margin: 1.5rem 2rem;
}
按钮样式,Let's do it!
这个按钮的常态样式其实是非常简单的:
.button{ color: #fff; background:#111; }
给按钮增加类:
<button class="base button">我故障我快乐</button>