Home > Web Front-end > HTML Tutorial > css控制div元素旋转指定角度代码实例_html/css_WEB-ITnose

css控制div元素旋转指定角度代码实例_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:28:17
Original
1261 people have browsed it

css控制div元素旋转指定角度代码实例:
本章节介绍一下如何利用css3实现控制元素旋转指定角度的效果。
在这里咱们就不考虑低版本的浏览器,因为随着时间的推移,低版本的浏览器会被逐渐淘汰,就算是当前,低版本浏览器的用户的占比也是很少了,下面直接看代码实例:

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">div{  -webkit-transform:rotate(45deg);  -moz-transform:rotate(45deg);  -o-transform:rotate(45deg);  transform:rotate(45deg);  width:100px;  height:100px;  background:#999;}</style></head><body><div></div></body></html>
Copy after login

上面的代码实现了我们的要求,代码比较简单,这里就不多介绍了。
transform属性可以参阅CSS3的transform属性总略介绍一章节。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=15772

更多内容可以参阅:http://www.softwhy.com/divcss/

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template