Guest User

Untitled

a guest
Feb 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. /* ホバーアニメーション(下線) */
  2. .underline {
  3. position: relative;
  4. }
  5. .underline:hover,
  6. .underline:focus,
  7. .underline:active {
  8. cursor: pointer;
  9. }
  10. .underline:after {/*疑似要素とアニメーション設定を加えてwidthを0にしておく*/
  11. content: '';
  12. position: absolute;
  13. left: 0;
  14. bottom: -2px;/*自由変更*/
  15. height: 3px;/*自由変更*/
  16. background-color: #fff;/*自由変更*/
  17. width: 0;
  18. transition: width .4s;/*自由変更*/
  19. }
  20. .underline:hover:after,
  21. .underline:focus:after,
  22. .underline:active:after {/*ホバーしたら100%の位置まで伸びる*/
  23. width: 100%;
  24. }
Add Comment
Please, Sign In to add comment