-
查看全部
-
Trantrom:持续的时间查看全部
-
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style> .mainDiv{ width:100px; height:100px; margin:100px auto; text-align: center; line-height: 100px; font-weight: bold; color:#ddd; background:#ddd; border:1px solid #ddd; -webkit-transform:rotate(0deg) scale(1); -moz-transform:rotate(0deg) scale(1); transform:rotate(0deg) scale(1); -webkit-transition:1s; -moz-transition:1s; transition:1s; } .mainDiv:hover{ -webkit-transform:rotate(720deg) scale(2); -moz-transform:rotate(720deg) scale(2); transform:rotate(720deg) scale(2); background:#f00; } </style> <title>css3特效</title> </head> <body> <div class="mainDiv">您好</div> </body> </html>查看全部
-
box-shadow 阴影查看全部
-
box-shadow position z-index transform:rotate scale transition查看全部
-
.mainDiv:hover{ background-color:red; color:#000; -webkit-transform:rotate(720deg) scale(2); }查看全部
-
-webkit-是Chrome和Safari浏览器的前缀 -moz-是firefox浏览器前缀查看全部
-
transition // 设置元素样式由1变为2查看全部
-
transform // 设置元素变形属性,旋转缩放扭曲等查看全部
-
z-index // 设置图片是第几层,z轴查看全部
-
position // 定位图片查看全部
-
box-shadow // 设置阴影查看全部
-
-webkit- 是Chrome 和 Safari浏览器的前缀 -moz- 是Firefox 浏览器的前缀查看全部
-
加特技查看全部
-
考虑浏览器兼容性查看全部
举报
0/150
提交
取消