Rotate image with javascript

后端 未结 9 793
温柔的废话
温柔的废话 2020-11-27 04:17

I need to rotate an image with javascript in 90-degree intervals. I have tried a few libraries like jQuery rotate and Raphaël, but they have the same problem - The image is

9条回答
  •  悲&欢浪女
    2020-11-27 04:28

    i have seen your running code .There is one line correction in your code.

    Write:

    $("#wrapper").rotate(angle); 
    

    instead of:

    $("#image").rotate(angle);
    

    and you will get your desired output,hope this is what you want.

提交回复
热议问题