码迷,mamicode.com
首页 > Web开发 > 详细

前端每日实战4. 纯 CSS 创作一个金属光泽 3D 按钮特效

时间:2018-12-09 14:10:28      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:不能   hid   line   居中   继承   linear   width   特效   range   

原文地址:https://segmentfault.com/a/1190000014599280

 

 

HTML代码:

<div class="box">BUTTON</div>

css代码:

/* 内容居中*/
html, body {
    /* 使body继承HTML的高度 ,否则box是不能垂直居中*/
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: skyblue;
}
/*设置按钮的 2d 样式,为了便于调整按钮尺寸,使用了变量*/
.box{
    background:linear-gradient(to right,gold,darkorange);
    color:white;
    --width:250px;
    --height:calc(var(--width)/3);
    width:var(--width);
    height:var(--height);
    text-align: center;
    line-height: var(--height);
    font-size:cal(var(--height)/2.5);
    font-family:sans-serif;
    letter-spacing:0.2em;
    border:1px solid darkgoldenrod;
    border-radius:2em;
    /*设置按钮的 3d 样式*/
    transform: perspective(500px) rotateY(-15deg);
    text-shadow: 6px 3px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 0 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}
/* 定义按钮的鼠标划过动画效果 */
.box:hover {
    transform: perspective(500px) rotateY(15deg);
    text-shadow: -6px 3px 2px rgba(0, 0, 0, 0.2);
    box-shadow: -2px 0 0 5px rgba(0, 0, 0, 0.2);
}
/* 用伪元素增加光泽 */
.box::before {
    position: absolute;
    content: ‘‘;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, white, transparent);
    left: -100%;
    transition: 0.5s;
}
.box:hover::before {
    left: 100%;
}

 

前端每日实战4. 纯 CSS 创作一个金属光泽 3D 按钮特效

标签:不能   hid   line   居中   继承   linear   width   特效   range   

原文地址:https://www.cnblogs.com/FlyingLiao/p/10090720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!