Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- <!-- select the text that you want to have float animation on hover for, go to the settings, type a name in for the id i.e #txt, then create an embed, copy paste this and make sure both hashtags are the same as the text id -->
- <!-- if your are using a custom cursor change cursor:default; to cursor:url(link here); -->
- #txt a {
- display: inline-block;
- transition: .2s ease;
- }
- #txt a:hover {
- transform: translateY(-20%);
- cursor:default;
- }
- </style>
Advertisement
Add Comment
Please, Sign In to add comment