Advertisement
Guest User

test

a guest
Oct 23rd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.  
  5. <head>
  6.  
  7.     <title>Misteriori</title>
  8.  
  9.     <style type="text/css">
  10.  
  11.         body {
  12.  
  13.             margin: 0;
  14.  
  15.             padding: 0;
  16.  
  17.         }
  18.  
  19.         img.pre-logo {
  20.  
  21.             margin: 0 auto;
  22.  
  23.             display: block;
  24.  
  25.             top: calc(50vh - 196px);
  26.  
  27.             left: calc(50vw - 111.5px);
  28.  
  29.             position: absolute;
  30.  
  31.             animation-name: rotation;
  32.  
  33.             animation-duration: 5s;
  34.  
  35.             animation-iteration-count: infinite;
  36.  
  37.          
  38.  
  39.         }
  40.  
  41.  
  42.  
  43.         img.pre-frame-thin {
  44.  
  45.             margin: 0 auto;
  46.  
  47.             display: block;
  48.  
  49.             position: absolute;
  50.  
  51.             top: calc(50vh - 241.5px);
  52.  
  53.             left: calc(50vw - 145px);
  54.  
  55.             animation-name: rotation;
  56.  
  57.             animation-duration: 5s;
  58.  
  59.             animation-iteration-count: infinite;
  60.  
  61.              
  62.  
  63.         }
  64.  
  65.  
  66.  
  67.         img.pre-frame-bold {
  68.  
  69.             margin: 0 auto;
  70.  
  71.             display: block;
  72.  
  73.             position: absolute;
  74.  
  75.             top: calc(50vh - 258.5px);
  76.  
  77.             left: calc(50vw - 161.5px);
  78.  
  79.             animation-name: rotation2;       
  80.  
  81.             /* animation-direction: reverse;*/
  82.  
  83.             animation-duration: 5s;
  84.  
  85.             animation-iteration-count: infinite;
  86.  
  87.  
  88.  
  89.         }
  90.  
  91.  
  92.  
  93.         @keyframes rotation {
  94.  
  95.           from {
  96.  
  97.             transform: rotateY(0deg);
  98.  
  99.           }
  100.  
  101.           to {
  102.  
  103.             transform: rotateY(360deg);
  104.  
  105.           }
  106.  
  107.         }
  108.  
  109.  
  110.  
  111.         @keyframes rotation2 {
  112.  
  113.          from {
  114.  
  115.  
  116.  
  117.             transform: rotateY(0deg);
  118.             -webkit-transform:rotateY(0deg); /* Safari and Chrome */
  119.  
  120.           }
  121.  
  122.           to {
  123.             transform: rotateY(-360deg);
  124.              -webkit-transform:rotateY(-360deg); /* Safari and Chrome */
  125.  
  126.           }
  127.  
  128.         }
  129.  
  130.     </style>
  131.  
  132. </head>
  133.  
  134. <body>
  135.  
  136.     <div style="width:500px;">
  137.  
  138.     <img class="pre-logo" src="M.svg" />
  139.  
  140.     <img class="pre-frame-thin" src="RAMKA CIENKA.svg" />
  141.  
  142.     <img class="pre-frame-bold" src="RAMKA GRUBA.svg" />
  143.  
  144.  
  145. </div>
  146. </body>
  147.  
  148. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement