1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00
2024-08-07 02:04:57 +01:00

8 lines
188 B
JavaScript

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