博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css3 动画基础
阅读量:5082 次
发布时间:2019-06-13

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

实例动画

step1:改变字体颜色

雨打浮萍

h1 a{	color:#03c;	text-decoration:none;	-webkit-transition:color .5s ease-in-out;	-moz-transition:color .5s ease-in-out;	-o-transition:color .5s ease-in-out;	transition:color .5s ease-in-out;}h1 a:hover{	color:#f60;}

step2:改变背景颜色

专注于web前端开发

h2:hover{	-webkit-transition:background-color 0.5s linear;	-moz-transition:background-color 0.5s linear;	-o-transition:background-color 0.5s linear;	transition:background-color 0.5s linear;	background-color:#ccc;}

step3:转换多个属性

作用transition进行多个属性转换:

辛苦遭逢起一经,干戈寥落四周星。山河破碎风飘絮, 身世浮沉雨打萍。惶恐滩头说惶恐,零丁洋里叹零丁。 人生自古谁无死?留取丹心照汗青
.div {	padding:5px;	color:#fff;	background-color:#666;	-webkit-transition:color 1s ease-in-out, background-color 0.5s ease-in-out;	-moz-transition:color 1s ease-in-out, background-color 0.5s ease-in-out;	-o-transition:color 1s ease-in-out, background-color 0.5s ease-in-out;	transition:color 1s ease-in-out, background-color 0.5s ease-in-out;}.div:hover {	color:#333;	background-color:#ccc;}

渐变效果还有另外一种写法:

.div {	-webkit-transition:all 1s ease-in-out;	-moz-transition:all 1s ease-in-out;	-o-transition:all 1s ease-in-out;	transition:all 1s ease-in-out;}

转载于:https://www.cnblogs.com/yhq361/p/4279505.html

你可能感兴趣的文章
多表联查
查看>>
suoi46 最大和和 (线段树)
查看>>
Direct2D Brush操作
查看>>
Fire!
查看>>
wp7开发5启动器和选择器
查看>>
hdu 1016
查看>>
架构设计:生产者/消费者模式
查看>>
httpd: Could not reliably determine the server's fully qualified domain name
查看>>
青蛙学Linux—sudo和它的配置文件
查看>>
使用Python读取和写入mp3文件的id3v1信息
查看>>
内存空间切换:在内核写数据到用户空间的方法
查看>>
【POJ3233】Matrix Power Series
查看>>
音视频基础知识(一)
查看>>
BZOJ2982: combination Lucas
查看>>
OpenCV下的图片旋转(转)
查看>>
WPF 一个弧形手势提示动画
查看>>
随手练——回文串专题
查看>>
线段树详解 (原理,实现与应用)
查看>>
Ubuntu 登陆异常-输入正确的密码后还会返回到登陆界面的问题
查看>>
JQ轮播小demo
查看>>