Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试旋转我的 div,但它只适用于 Firefox。我怎样才能解决这个问题
$(this).animate({ rotate: '+=90deg', '-webkit-transform': '+=90deg', '-ms-transform': '+=90deg', '-o-transform': '+=90deg', '-moz-transform': '+=90deg' }, 300);
您可以使用Sandpaper,并使用此 CSS 规则:
-sand-transform: rotate(90deg);
它支持所有浏览器——甚至是 IE。