0
1.1kviews
Create a web page to show how you can apply the transformation effects so that the image rotates by 75 degree. Assume suitable parameters if required.
1 Answer
0
16views

75 Degree Rotate Transformation Effect on Image

<!DOCTYPE html>
<html>
<head>
<title>75 Degree Rotate Transformation Effect on Image</title>
<style type="text/css">
img:hover {
-webkit-transform: rotate(75deg);  /* Chrome, Safari, Opera */
-moz-transform: rotate(75deg);  /* Firefox */
-ms-transform: rotate(75deg);  /* IE 9 */
transform: rotate(75deg);  /* Modern Browsers */    
}  
</style>
</head>
<body><center> …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.