css3 使用box-shadow实现浮雕风格按钮效果
发布时间:2024-08-19 17:05:11 作者:hackchen 我要评论
这篇文章主要介绍了css3 使用box-shadow实现浮雕风格按钮效果,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧
利用 box-shadow 实现浮雕风格的按钮。
HTML:
<form> <div class="segment"> <h1>Sign up</h1> </div> <label> <input type="text" placeholder="Email Address" /> </label> <label> <input type="password" placeholder="Password" /> </label> <button class="red" type="button"><i class="icon ion-md-lock"></i> Log in</button> <div class="segment"> <button class="unit" type="button"><i class="icon ion-md-arrow-back"></i></button> <button class="unit" type="button"><i class="icon ion-md-bookmark"></i></button> <button class="unit" type="button"><i class="icon ion-md-settings"></i></button> </div> <div class="input-group"> <label> <input type="text" placeholder="Email Address" /> </label> <button class="unit" type="button"><i class="icon ion-md-search"></i></button> </div> </form>
SCSS:
$ruler: 16px; $color-red: #ae1100; $color-bg: #ebecf0; $color-shadow: #babecc; $color-white: #fff; body, html { background-color: $color-bg; } h1 { margin: 0; } body, p, input, select, textarea, button { font-family: "Montserrat", sans-serif; letter-spacing: -0.2px; font-size: $ruler; } div, p { color: $color-shadow; text-shadow: 1px 1px 1px $color-white; } form { padding: $ruler; width: $ruler * 20; margin: 0 auto; } .segment { padding: $ruler * 2 0; text-align: center; } button, input { border: 0; outline: 0; font-size: $ruler; border-radius: $ruler * 20; padding: $ruler; background-color: $color-bg; text-shadow: 1px 1px 0 $color-white; } label { display: block; margin-bottom: $ruler * 1.5; width: 100%; } input { margin-right: $ruler/2; box-shadow: inset 2px 2px 5px $color-shadow, inset -5px -5px 10px $color-white; width: 100%; box-sizing: border-box; transition: all 0.2s ease-in-out; appearance: none; -webkit-appearance: none; &:focus { box-shadow: inset 1px 1px 2px $color-shadow, inset -1px -1px 2px $color-white; } } button { color: #61677c; font-weight: bold; box-shadow: -5px -5px 20px $color-white, 5px 5px 20px $color-shadow; transition: all 0.2s ease-in-out; cursor: pointer; font-weight: 600; &:hover { box-shadow: -2px -2px 5px $color-white, 2px 2px 5px $color-shadow; } &:active { box-shadow: inset 1px 1px 2px $color-shadow, inset -1px -1px 2px $color-white; } .icon { margin-right: $ruler/2; } &.unit { border-radius: $ruler/2; line-height: 0; width: $ruler * 3; height: $ruler * 3; display: inline-flex; justify-content: center; align-items: center; margin: 0 $ruler/2; font-size: $ruler * 1.2; .icon { margin-right: 0; } } &.red { display: block; width: 100%; color: $color-red; } } .input-group { display: flex; align-items: center; justify-content: flex-start; label { margin: 0; flex: 1; } }
到此这篇关于css3 box-shadow 浮雕风格按钮的文章就介绍到这了,更多相关css3 box-shadow浮雕按钮内容请搜索脚本之家以前的文章或继续浏览下面的相关文章,希望大家以后多多支持脚本之家!
相关文章
- 本文解析了CSS属性box-shadow的用法和应用,属性可以设置一个或多个下拉阴影的框,通过box-shadow属性,可以定义水平阴影的位置、垂直阴影的位置、模糊距离、阴影的大小和颜色2024-10-21
- CSS3的@media查询功能允许我们根据不同的媒体类型和设备特性来应用不同的样式规则,,本文详细探讨了@media查询的定义、语法、使用场景及注意事项,旨在帮助开发者更好地理解2024-10-17
CSS3 新特性 box-shadow 阴影效果、圆角border-radius效果实现
CSS3的border-radius属性可以轻松制作圆角效果,支持一至四个值来分别定义四个角的圆角大小,一个值时所有角圆角相同,两个值时对角线上的角相同,本文给大家介绍CSS3 新特性 b2024-10-17- CSS3动画为网页设计带来了丰富的动态效果,使得页面更加生动和吸引人,然而,有时我们希望动画在结束时保持最终状态,而不是回到初始状态,本文将介绍几种方法来实现这一效果2024-10-15
- 伪元素和伪类都增强了CSS选择器的功能,但它们有明显的区别,伪元素通过::表示,如::before和::after,用于向元素添加或修改内容,伪类则通过:表示,如:hover和:first-child,用于2024-10-15
- 本文介绍了使用CSS3实现各种样式效果的方法,包括文字渐变、圆角、阴影、多重背景等,通过实例代码,展示了如何简洁有效地增强网页视觉效果,无需额外图像或复杂脚本,适合前端2024-09-13
- 在Web开发中,动态滚动播放列表能够提升用户体验,使内容展示更加生动有趣,本文介绍了如何仅使用CSS3实现一个基础的循环播放列表,其中关键技术包括@keyframes规则和animat2024-09-11
- 之前有做过一个需求,安卓端嵌H5页面,实现语音输入并包含输入时动画,跳动的小球,多个小球同时跳动,相对定位需要left不相同,其次每个小球动画开始有时间差,其次就是小2024-08-29
详解CSS3 边框样式(包含border-radius、border-image与box-shadow)
这篇文章主要介绍了CSS3 边框样式(包含border-radius、border-image与box-shadow)的相关知识,本文给大家介绍的非常详细,,需要的朋友可以参考下2024-08-29- 这篇文章主要介绍了css3 使用box-shadow实现浮雕风格按钮效果,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧2024-08-19
最新评论