質問

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

I have this code:

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

How can I make it work without using a plugin?

役に立ちましたか?

解決

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

Try this:

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

他のヒント

Use .css() in jquery

$("a.shownav img").css("transform", "rotate(180deg)");
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top