css手型效果

文章描述:

css设置标签鼠标放上去显示手型效果

 

手型

cursor:pointer;

 

动画

transition: all 0.5s;
transition: transform .5s,background .5s;

 

颜色

background: #55c7fb;

 

a, a:link, a:visited{ color:#333; text-decoration:none; outline:none; -webkit-transition:all .3s ease; -o-transition:all .3s ease; transition:all .3s ease; }

 

发布时间:2022/10/24

发表评论