1
0
mirror of https://github.com/actix/examples synced 2025-01-23 22:34:35 +01:00
2021-02-26 00:57:58 +00:00

8 lines
207 B
JavaScript

jQuery(document).ready(function () {
let rotation = 0;
jQuery("img").click(function () {
rotation += 360;
jQuery("img").css({'transform': 'rotate(' + rotation + 'deg)'});
});
});