为了账号安全,请及时绑定邮箱和手机立即绑定

如图,button按钮,当鼠标覆盖或者点击的时候,如何用css让她有悬浮、阴影、发光的感觉?

如图,button按钮,当鼠标覆盖或者点击的时候,如何用css让她有悬浮、阴影、发光的感觉?

千巷猫影 2018-12-18 14:19:44
查看完整描述

1 回答

?
交互式爱情

TA贡献1712条经验 获得超3个赞

给你写了个小例子,直接复制过去就能看了~

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>Document</title>

    <style type="text/css">

        .myBtn{

            width: 80px;

            height: 36px;

            background-color:#20A0FF;

            color: white;

            border: none;

            cursor: pointer;

            /*渐变效果,可以删掉这句话试试*/

            transition:all 0.8s;

        }

        .myBtn:hover{            

            /*鼠标悬浮效果*/

            /*阴影*/

            box-shadow: 5px 5px 5px grey;

            /*发光*/

            background-color: #58B7FF;

        }

    </style>

</head>

<body>

    <button class="myBtn">举个栗子</button>

</body>

</html>


查看完整回答
反对 回复 2019-01-05
  • 1 回答
  • 0 关注
  • 1532 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信