首页 > 网站 > WEB开发 > 正文

做一个从中心向两边水平扩展的动画效果

2024-04-27 15:09:25
字体:
来源:转载
供稿:网友

用到了CSS3的transition属性,其实是从左往右扩展的。因为设置了块居中,产生从中心向左右扩展的感觉

<!doctype html><html><head><style>	#box{		background-color:gray;		height:20px;		overflow:hidden;	}	.a{		background-color:red;		width:0;		height:20px;		margin: 0 auto;		transition:width .8s;		-webkit-transition:width .8s;	}	#box:hover .a{		width:100%;		transition:width .8s;		-webkit-transition:width .8s;	}</style></head><body><div id="box"><div class="a"></div></div></body></html>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表