博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS3小模块hover左右交替互换动画
阅读量:4968 次
发布时间:2019-06-12

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

1 *{ margin:0; padding:0; font-size:12px;} 2 .readers-list{ line-height:18px; overflow:hidden; _zoom:1;} 3 .readers-list li{ float:left; width:200px; *margin-right:-1px;} 4 .readers-list a, .readers-list a:hover strong{ background-color:#f2f2f2; background-image:-webkit-linear-gradient(#f8f8f8,#f2f2f2); background-image:-moz-linear-gradient(#f8f8f8,#f2f2f2); background-image:linear-gradient(#f8f8f8,#f2f2f2);} 5 .readers-list a{ position:relative; display:block; height:36px; margin:4px; padding:4px 4px 4px 44px; color:#999; overflow:hidden; border:1px solid #ccc; border-radius:2px; box-shadow:#eee 0 0 2px;} 6 .readers-list a:hover{ border-color:#bbb; box-shadow:#ccc 0 0 2px; background-color:#fff; background-image:none;} 7 .readers-list img, .readers-list em, .readers-list strong{ -webkit-transition:all .2s ease-out; -moz-transition:all .2s ease-out; transition:all .2s ease-out;} 8 .readers-list img{ float:left; width:36px; height:36px; margin:0 8px 0 -40px; border-radius:2px} 9 .readers-list a:hover img{ opacity:.6; margin-left:0;}10 .readers-list em{ font-style:normal; margin-right:10px;}11 .readers-list a:hover em{ color:#EE8B17; font-weight:bold;}12 .readers-list strong{ position:absolute; right:6px; top:4px; width:40px; text-align:right; font-size:14px;}13 .readers-list a:hover strong{ color:#EE8B17; height:44px; line-height:40px; right:150px; top:0; text-align:center; border-right:1px solid #ccc;}

point:

hover伪类部分定义完第二种效果,关键是给三个对象img em strong增加动画属性transition变换从而实现过渡;

box-shadow:Xoffset Yoffset blur color (inset)

原文转至

转载于:https://www.cnblogs.com/archrjoe/archive/2013/02/25/2931688.html

你可能感兴趣的文章
数据结构——八大排序算法
查看>>
Daily Scrum 10.30
查看>>
epoll使用详解
查看>>
ERROR 2002 (HY000)错误的解决
查看>>
Python入门:字符串的分片与索引、字符串的方法
查看>>
Linux基础命令之文件过滤及内容编辑处理(二)
查看>>
一个简单的小小记账本程序(java)
查看>>
无缝滚动js (手写通俗易懂)
查看>>
色彩對比分析
查看>>
五. 面向对象高级特性7. 泛型通配符和类型参数的范围
查看>>
hadoop开发库webhdfs使用介绍
查看>>
document对象(二)
查看>>
Ajax中Put和Delete请求传递参数无效的解决方法(Restful风格)
查看>>
PHP——0127加登录页面,加查询,加方法,加提示框
查看>>
日期工具类
查看>>
this
查看>>
自由群,外代数和泛包络代数
查看>>
Centos 7 下部署Django + uWSGI + Nginx
查看>>
MVC系列学习(三)-EF的延迟加载
查看>>
C++函数调用方式约定stdcall,cdecl,pascal,naked,thiscall,fastcall
查看>>