lockets

expand on hover for existing text

Apr 8th, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <style>
  2.  
  3. <!-- select the text that you want to have expand 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 -->
  4. <!-- to change how big the hover is change the letter-spacing number -->
  5.  
  6. #txt {
  7. text-decoration: none;
  8. transition: 0.4s;
  9. }
  10.  
  11. #txt:hover {
  12. letter-spacing: 3px;
  13. }
  14. </style>
Advertisement
Add Comment
Please, Sign In to add comment