Edit | Leave a Comment | Favorite


More Like This: (Beta Temporary Feature)


User Comments:


Genis_Sage commented at 2016-05-14 09:08:13 » #1949880

You can use Javascript to rotate this image in your browser. You need to open the browser console first. For Chrome: CTRL + SHIFT + J (CMD + OPT + J for Mac). For Firefox: CTRL + SHIFT + K (CMD + OPT + K).

Then paste this code to rotate the image by 150 degrees:

document.getElementById("image").style.transform = "rotate(150deg)";

Or 230 degrees:

document.getElementById("image").style.transform = "rotate(230deg)";

7 Points Flag