jQuery .rotate()无法正常工作 [英] jQuery .rotate() doesn't work

查看:63
本文介绍了jQuery .rotate()无法正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不知道为什么它不起作用。我正在使用jQuery 2.1.0

I don't know why it don't work. I am using jQuery 2.1.0

我有以下代码:

$( a.shownav img)。rotate(180);

如何使用不用

推荐答案

使用 .rotate(),需要添加 jqueryrotate 插件。这也可以使用纯jQuery和CSS来实现。

for using .rotate(), you need to add jqueryrotate plugin. This can be also achieved using pure jQuery and CSS.

尝试一下:

$("a.shownav img").css({
    "-webkit-transform": "rotate(180deg)",
    "-moz-transform": "rotate(180deg)",
    "transform": "rotate(180deg)" /* For modern browsers(CSS3)  */
});

这篇关于jQuery .rotate()无法正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆