giangtranguyen: (Default)
Nguyễn Trà Giang ([personal profile] giangtranguyen) wrote in [community profile] twine_tutorials2017-07-02 01:14 pm

How To Make Your Image Spin

Just copy and paste the code into your Story Stylesheets, and adjust it to your liking.

For example:

img {
-webkit-transition: -webkit-transform .9s ease-in-out;
transition: transform .9s ease-in-out;
}
 
img:hover {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}