博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用button的:after伪类选择器内容的跳动
阅读量:6714 次
发布时间:2019-06-25

本文共 1244 字,大约阅读时间需要 4 分钟。

按钮的css样式,想要作个美观一点的按钮,使用:after伪类选择器在按钮后跟随"!!"的符号,但点击按钮时按钮的值内容动,但跟随的"!!"符合不动,这样看起来很难受,就尝试让"!!"也动起来,经过测试发现,只要将按钮的css样式设定为相对定位即可。这可能也是基础没有理解透彻导致的。

/*使用相对定位控制跟随内容是否会随这按钮一起跳动*/

     position: relative;

 

.button{
height: 30px; width: 65px; border:1px solid #64c878; background: -webkit-linear-gradient(top,#90dfa2,#84d494); background: -moz-linear-gradient(top,#90dfa2,#84d494); background: linear-gradient(#90dfa2,#84d494); text-align: left; /*使用相对定位控制跟随内容是否会随这按钮一起跳动*/ position: relative; /* 对按钮圆边角的设置 border-radius: 0px 100px 100px 0px;*/ }.button:after{
position: absolute; content:'!!'; color: #b82929; margin-left: 10px; box-shadow: inset; -webkit-transform:rotate(-90deg); -moz-transform:rotate(-90deg); transform:rotate(-90deg);} .button:active{
top: 1px; box-shadow: 0 1px 3px #4d7254 inset,0 3px 0 #fff; background-color: #000c0c; background: -webkit-linear-gradient(top, #df4e58,#84d494); background: -moz-linear-gradient(top,#df4e58,#84d494); background: linear-gradient(#df4e58,#84d494); }
按钮 

 效果如下:

登录

转载于:https://www.cnblogs.com/gynbk/p/6690298.html

你可能感兴趣的文章
我的友情链接
查看>>
记一次线上Java程序导致服务器CPU占用率过高的问题排除过程
查看>>
CentOS6、7 LVM逻辑卷分区自动扩容Shell脚本编程思路与实例
查看>>
Linux下sqlite3常用命令!!!
查看>>
mysqldump导出的数据导入时特别慢的问题解决
查看>>
我的友情链接
查看>>
在Kali中开启ssh
查看>>
Linux系统产生随机数的6种方法
查看>>
squid-3.x 修改源代码隐藏版本号.时间、主机名等信息
查看>>
SequoiaDB 笔记
查看>>
hadoop安装
查看>>
Ubuntu 用户名 不在 sudoers文件中,此事将被报告。
查看>>
lduan HyPer-V 网络存储(三)
查看>>
SSH 命令行参数详解【英】
查看>>
DNS服务器
查看>>
notify与notifyAll的区别
查看>>
Java读取文件方法大全
查看>>
Java学习lesson 08
查看>>
MarkDown入门
查看>>
项目经理 与 敏捷开发
查看>>