Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.66 KB | None | 0 0
  1. <style>
  2.     body, html {
  3.         margin: 0;
  4.         width: 100%;
  5.         height: 100%;
  6.     }
  7.  
  8.     .fullscreen {
  9.         width: 100%;
  10.         height: 100%;
  11.     }
  12.  
  13.     .frost-screen {
  14.         object-fit: cover;
  15.         position: absolute;
  16.         top: 0;
  17.         bottom: 0;
  18.         left: 0;
  19.         right: 0;
  20.  
  21.         -webkit-mask-image: -webkit-radial-gradient(50% 50%, circle, transparent 40%, black 90%);
  22.         mask-image: radial-gradient(50% 50%, circle, transparent 30%, black 80%);
  23.         mask-position: center, top left;
  24.         mask-repeat: no-repeat, no-repeat;
  25.  
  26.         background: url("https://previews.123rf.com/images/fotosav/fotosav0809/fotosav080900021/3534444-hoarfrost-the-patterns-made-by-the-frost-on-the-window-hoarfrost-background-.jpg");
  27.         background-size: 50% 50%;
  28.         background-repeat: repeat;
  29.         mix-blend-mode: screen;
  30.         animation: pulse 4s 1 ease-in-out;
  31.     }
  32.  
  33.     @keyframes pulse {
  34.         0% {
  35.             transform: scale(1.002);
  36.             opacity: 0.1;
  37.         }
  38.         50% {
  39.             transform: scale(1);
  40.             opacity: 0.4;
  41.         }
  42.         100% {
  43.             transform: scale(1.001);
  44.             opacity: 0.99;
  45.         }
  46.     }
  47. </style>
  48.  
  49. <body>
  50. <img class="fullscreen"
  51.     src="https://cdnb.artstation.com/p/assets/images/images/009/201/921/large/youssef-alioua-scene-64-bit-pcd3d-sm5-2-3-2018-6-19-20-pm.jpg?1517668332"/>
  52.  
  53. <!--<img class="fullscreen frost-screen"
  54.     src="https://previews.123rf.com/images/vvoennyy/vvoennyy1411/vvoennyy141100456/34152042-hoar-frost-on-window-pane-on-frosty-winter-evening.jpg">-->
  55. <div class="fullscreen frost-screen"></div>
  56.  
  57. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement