Advertisement
tommyosheawebdesign

Elemtentor Animated Border

Nov 20th, 2020
1,668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.94 KB | None | 0 0
  1. selector.fadeIn::before {
  2.     content: '';
  3.     width: 100%;
  4.     height: 100%;
  5.     position: absolute;
  6.     z-index: -3;
  7.     background-repeat: no-repeat;
  8.     background-image: -webkit-gradient(linear, left top, right top, color-stop(100%, #C9C9C9), to(#C9C9C9)), -webkit-gradient(linear, left top, left bottom, color-stop(100%, #C9C9C9), to(#C9C9C9)), -webkit-gradient(linear, left top, right top, color-stop(100%, #C9C9C9), to(#C9C9C9)), -webkit-gradient(linear, left top, left bottom, color-stop(100%, #C9C9C9), to(#C9C9C9));
  9.     background-image: -o-linear-gradient(left, #C9C9C9 100%, #C9C9C9 100%), -o-linear-gradient(top, #C9C9C9 100%, #C9C9C9 100%), -o-linear-gradient(left, #C9C9C9 100%, #C9C9C9 100%), -o-linear-gradient(top, #C9C9C9 100%, #C9C9C9 100%);
  10.     background-image: linear-gradient(to right, #C9C9C9 100%, #C9C9C9 100%), linear-gradient(to bottom, #C9C9C9 100%, #C9C9C9 100%), linear-gradient(to right, #C9C9C9 100%, #C9C9C9 100%), linear-gradient(to bottom, #C9C9C9 100%, #C9C9C9 100%);
  11.     background-size: 0 3px, 3px 0, 0 3px, 3px 0;
  12.     background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  13.     -webkit-animation: bordere 2.3s cubic-bezier(0.19, 1, 0.22, 1) forwards 1.3s;
  14.     animation: bordere 2.3s cubic-bezier(0.19, 1, 0.22, 1) forwards 1.3s;
  15. }
  16.  
  17. @-webkit-keyframes bordere {
  18.     0% {
  19.         background-size: 0 3px, 3px 0, 0 3px, 3px 0;
  20.     }
  21.     25% {
  22.         background-size: 100% 3px, 3px 0, 0 3px, 3px 0;
  23.     }
  24.     50% {
  25.         background-size: 100% 3px, 3px 100%, 0 3px, 3px 0;
  26.     }
  27.     75% {
  28.         background-size: 100% 3px, 3px 100%, 100% 3px, 3px 0;
  29.     }
  30.     100% {
  31.         background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  32.     }
  33. }
  34.  
  35. @keyframes bordere {
  36.     0% {
  37.         background-size: 0 3px, 3px 0, 0 3px, 3px 0;
  38.     }
  39.     25% {
  40.         background-size: 100% 3px, 3px 0, 0 3px, 3px 0;
  41.     }
  42.     50% {
  43.         background-size: 100% 3px, 3px 100%, 0 3px, 3px 0;
  44.     }
  45.     75% {
  46.         background-size: 100% 3px, 3px 100%, 100% 3px, 3px 0;
  47.     }
  48.     100% {
  49.         background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  50.     }
  51. }
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement