javascript - 这个描边动画效果是怎么实现的呢?
问题描述
鼠标悬停在上面就会出现这个类似描边效果,纯css可以实现吗?想实现一样的效果具体怎么弄呢?
问题解答
回答1:开始我想尝试用伪类来实现,但z-index好像没办法处理,所以就这样模拟了。demo
<style type='text/css'>.btn{ position: relative; height: 45px; width: 200px; background: #fff; color: #6cf; text-align: center; line-height: 45px; -webkit-box-sizing:border-box; box-sizing:border-box; margin: 0 auto; border: 1px solid #ccc;}.b-l{ position: absolute; content: ''; display: block; width: 0px; height: 1px; left: -1px; top: -2px; background: #6cf; z-index: -1; -webkit-transition:width 1s linear 2s,height 0.5s linear 1.5s; transition:width 1s linear 2s,height 0.5s linear 1.5s;}.b-r{ position: absolute; content: ''; display: block; width: 0px; height: 1px; right: -1px; bottom: -2px; background: #6cf; z-index: -1; -webkit-transition:width 1s linear 0.5s,height 0.5s linear; transition:width 1s linear 0.5s,height 0.5s linear;}.btn:hover .b-l{ -webkit-transition:width 1s linear,height 0.5s linear 1s; transition:width 1s linear,height 0.5s linear 1s; width: 201px; height: 46px;}.btn:hover .b-r{ -webkit-transition:width 1s linear 1.5s,height 0.5s linear 2.5s; transition:width 1s linear 1.5s,height 0.5s linear 2.5s; width: 201px; height: 46px;}</style><body><p class='btn'> <p class='b-l'></p> <p class='b-r'></p> btn</p></body>回答2:
可以实现 主要依靠animation-delay属性,可以自行搜索下
回答3:是SVG吧。
相关文章:
1. javascript - echart+百度地图2. javascript 开发百度地图3. nginx - 关于vue项目部署到ngnix后出现的问题4. 如图的flex骰子布局是怎么实现的?5. angular.js - 百度爬虫如何处理“#”符号?6. nosql - mongodb 多组数据不固定字段查询问题 [百度党请绕道]7. javascript - 请问div是个链接,鼠标移上去能出现一个div,比如查看更多按钮,怎么做?8. javascript - 前端开发中业务模型和视图模型具体分别指什么?9. html - 使用CkEditor时,在后台(php)无法接收到文本域中的内容???10. html5 - 为什么第二个 flex 会紧跟在第一个 flex 容器?
