CSS 过渡旋转 img
我需要通过单击将 img 转换为 90 度,再次单击按钮后,img 旋转到 0 度。我有 网站 ,其中包含 jQuery 的这些内容,但我需要它仅CSS。
I need to Transitions Rotating img by click to be 90 degree and after click the button again the img rotate to get to 0 degree . I have web site that have these by jQuery but i need it by css only .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
必须使用
transform:rotate()
CSS 属性。我为此目的编写了一个(简单?)纯 JS 函数。JS:
示例,小提琴:http://jsfiddle.net/zvuyc/:
The
transform:rotate()
CSS property has to be used. I've written a (simple?) pure JS function for this purpose.JS:
Example, Fiddle: http://jsfiddle.net/zvuyc/: