Pregunta

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?

¿Fue útil?

Solución

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)  */
});

Otros consejos

Use .css() in jquery

$("a.shownav img").css("transform", "rotate(180deg)");
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top