mirror of
https://github.com/actix/examples
synced 2025-06-27 09:29:02 +02:00
standardize binary names
This commit is contained in:
7
basics/static-files/static/root/js/example.js
Normal file
7
basics/static-files/static/root/js/example.js
Normal file
@ -0,0 +1,7 @@
|
||||
jQuery(document).ready(function () {
|
||||
let rotation = 0;
|
||||
jQuery("img").click(function () {
|
||||
rotation += 360;
|
||||
jQuery("img").css({'transform': 'rotate(' + rotation + 'deg)'});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user