免費論壇 繁體 | 簡體
Sclub交友聊天~加入聊天室當版主
分享
返回列表 發帖

[分享] 分享一个让帖内投像360度旋转的代码

  1. <style>
  2. #viewthread .avatar img{
  3. width:100px;
  4. height:100px;
  5. transition:width 2s, height 2s;
  6. -moz-transition:width 2s, height 2s, -moz-transform 2s; /* Firefox 4 */
  7. -webkit-transition:width 2s, height 2s, -webkit-transform 2s; /* Safari and Chrome */
  8. -o-transition:width 2s, height 2s, -o-transform 2s; /* Opera */
  9. }

  10. #viewthread .avatar img:hover
  11. {
  12. width:100px;
  13. height:100px;
  14. transform:rotate(180deg);
  15. -moz-transform:rotate(360deg); /* Firefox 4 */
  16. -webkit-transform:rotate(360deg); /* Safari and Chrome */
  17. -o-transform:rotate(360deg); /* Opera */
  18. }
  19. </style>
複製代碼
头部或者第三方

回復 3# 章鱼


    你说的那个用户组头像我还真没测试

不过代码与代码之间不都是存在着一点点相互排斥的么,只能二选一咯

TOP

返回列表