Advertisement
Guest User

Image tilt on hover

a guest
May 16th, 2023
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <!--as is this is for pro plus or. u know. pure htmlcss but if you cant access the class feature IN pro plus just replace ".wee" in both selectors to your image's id (say like, #image01)-->
  2. <style>
  3. .wee {
  4. transition: 0.8s ease;
  5. }
  6. .wee:hover {
  7. transform: rotate(-15deg);
  8. }
  9. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement