mirror of
https://github.com/actix/examples
synced 2024-12-03 18:22:14 +01:00
bc6f614f78
* Improve the static files example. * Replace the broken websocket example with a simple static HTML page. * Show how to serve a second directory which is located inside the main directory but has file listing enabled. * Demonstrate that a hierarchy of static files can be served by placing the JS and CSS files in their respective subfolders. * Document how to use the example in the README. * Improve formatting.
8 lines
207 B
JavaScript
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)'});
|
|
});
|
|
});
|