css3代码实现的鼠标悬浮按钮效果代码实例_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:28:34
原创
1617人浏览过

css3代码实现的鼠标悬浮按钮效果代码实例:
在css3之前,鼠标悬浮于按钮之上,无非是设置按钮的大小、字体颜色或者背景图片等简单的项目,但是css3的出现,可以让设置变得丰富多彩,下面就是一个css3实现的此效果。
代码如下:

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">*, *:before, *:after{   margin:0;   padding:0;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   box-sizing:border-box; } body{   padding-top:10%;   text-align:center;   overflow-x:hidden; } .btn-edge{   position:relative;   display:inline-block;   padding:1rem 2rem;   font-family:'Titillium Web' , sans-serif;   font-weight:700;   text-decoration:none;   font-size:3rem;   color:#333;   background-image:-webkit-gradient(linear, left top, left bottom, from(#333), to(#333)), -webkit-gradient(linear, left top, left bottom, from(#333), to(#333)), -webkit-gradient(linear, left top, left bottom, from(#333), to(#333)), -webkit-gradient(linear, left top, left bottom, from(#333), to(#333)), -webkit-gradient(linear, left top, left bottom, from(#333), to(#333)), -webkit-gradient(linear, left top, left bottom, from(#333), to(#333)), -webkit-gradient(linear, left top, left bottom, from(#333), to(#333)), -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));   background-image:-webkit-linear-gradient(#333, #333), -webkit-linear-gradient(#333, #333), -webkit-linear-gradient(#333, #333), -webkit-linear-gradient(#333, #333), -webkit-linear-gradient(#333, #333), -webkit-linear-gradient(#333, #333), -webkit-linear-gradient(#333, #333), -webkit-linear-gradient(#333, #333);   background-image:linear-gradient(#333, #333), linear-gradient(#333, #333), linear-gradient(#333, #333), linear-gradient(#333, #333), linear-gradient(#333, #333), linear-gradient(#333, #333), linear-gradient(#333, #333), linear-gradient(#333, #333);   background-repeat:no-repeat;   -webkit-background-size:2rem 5px, 2rem 5px, 2rem 5px, 2rem 5px, 5px 2rem, 5px 2rem, 5px 2rem, 5px 2rem;   background-size:2rem 5px, 2rem 5px, 2rem 5px, 2rem 5px, 5px 2rem, 5px 2rem, 5px 2rem, 5px 2rem;  background-position:0 0, 100% 0, 0 100%, 100% 100%;   -webkit-box-shadow:inset 0 0 0 5px rgba(255, 99, 71, 0);   box-shadow:inset 0 0 0 5px rgba(255, 99, 71, 0);   -webkit-transition: background-size 1s .4s, -webkit-box-shadow .4s, color .4s;   transition: background-size 1s .4s, box-shadow .4s, color .4s;   -webkit-transform: translateZ(0);   transform: translateZ(0); } .btn-edge:hover{   color:tomato;   -webkit-background-size:100% 5px, 100% 5px, 100% 5px, 100% 5px, 5px 100%, 5px 100%, 5px 100%, 5px 100%;   background-size:100% 5px, 100% 5px, 100% 5px, 100% 5px, 5px 100%, 5px 100%, 5px 100%, 5px 100%;   -webkit-box-shadow:inset 0 0 0 5px tomato;   box-shadow:inset 0 0 0 5px tomato;   -webkit-transition:background-size 1s, -webkit-box-shadow .4s .6s, color .4s .6s;   transition:background-size 1s, box-shadow .4s .6s, color .4s .6s; } </style></head><body><a class="btn-edge" href="http://www.softwhy.com">蚂蚁部落</a> </div></body></html>
登录后复制

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=15539

更多内容可以参阅:http://www.softwhy.com/divcss/

HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号