{{#css:
body{
-moz-transform:rotate(2.0deg);
-webkit-transform:rotate(2.0deg);
transform:rotate(2.0deg);
}}
I've got this piece of code here and am trying to rotate a page on a site which uses the Wikimedia Software. Here is an exaple of the above codesnippet used to slightly rotate the view: https://nonciclopedia.org/wiki/Torre_di_Pisa. My question is: is it possible to rotate the page according to your mousescroll? And if yes, how? I have no clue about CSS and couldn't find any helpful information previously posted.
You can achieve this, but you still need JS to set scroll position. You can save it as a global variable. Then there is a little trick to handle it with css - you have create an infinite animation set on pause and change delay instead:
I think, I've seen it on css-tricks for the first time, but there is a restricted access currently. Still, the link might be useful: https://css-tricks.com/books/greatest-css-tricks/scroll-animation/