css中的元素旋轉

來源:互聯網
上載者:User

轉自:碼頭

先來看看這個圖片:

這是一個日期的展現,其中2009就是通過元素旋轉實現的。

原文在這裡:http://snook.ca/archives/html_and_css/css-text-rotation(翻譯:http://bbs.lampbrother.net/thread-13138-1-1.html)

這裡是html代碼:

view source

print?1.<div>2.  <span>31</span>3.  <span>July</span>4.  <span>2009</span>5.</div>

旋轉的css:

view source

print?1.-webkit-transform: rotate(-90deg);//Safari 4+,Google Chrome 1+2.-moz-transform: rotate(-90deg);//Firefox 3.5+3.filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);//ie

雖然它目前不算是CSS3中的一部分,但Webkit已經有了它自己的一套變形屬性,Mozilla也在效仿。變形包含了很多不同類型的值,不過其中最有意思也是最有用的就是旋轉了包括任意的旋轉角度。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.