Фон из анимированных самолётов на CSS3
Фон из анимированных летящих самолётов. Можете подойти для одного из ваших проектов
Для начала посмотрите ДЕМО
Установка:
1#: В самый низ вашего CSS вставьте:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
.pen-container { background-color: white; overflow-x: hidden; min-height: 100vh; position: relative; } .pen-container::after { background: linear-gradient(359deg, #b7bca4 26.23%, #3d94b2 87.37%); content: ""; position: absolute; top: 0; left: 0; opacity: 0.4; height: 100%; width: 100%; } .plane { left: 0; position: absolute; transform: rotate(-10deg); width: 100%; z-index: 1; } .plane i { animation: motion linear infinite; background-image: url("/img/plane2x.webp"); background-repeat: no-repeat; background-size: 100%; position: absolute; right: 0; transition: 0.4s ease-out; } .plane-1 { top: 90px; } .plane-1 i { height: 67px; width: 1171px; animation-duration: 50s; animation-delay: -10s; } .plane-2 { top: 320px; } .plane-2 i { height: 58px; width: 1007px; animation-duration: 60s; animation-delay: -4s; } .plane-3 { top: 30px; } .plane-3 i { height: 40px; width: 693px; animation-duration: 75s; animation-delay: -33s; } .plane-4 { top: 261px; } .plane-4 i { height: 34px; width: 594px; animation-duration: 85s; animation-delay: -50s; } .plane-5 { top: 449px; } .plane-5 i { height: 31px; width: 528px; animation-duration: 100s; animation-delay: -33s; } .plane-6 { top: 204px; } .plane-6 i { height: 21px; width: 363px; animation-duration: 110s; animation-delay: -2s; } .plane-7 { top: 0; } .plane-7 i { height: 21px; width: 363px; animation-duration: 125s; animation-delay: 10s; } .plane-8 { top: 401px; } .plane-8 i { height: 18px; width: 313px; animation-duration: 140s; animation-delay: -60s; } .plane-9 { top: 331px; } .plane-9 i { height: 14px; width: 231px; animation-duration: 150s; animation-delay: -20s; } .plane-10 { top: 430px; } .plane-10 i { height: 12px; width: 197px; animation-duration: 160s; } @keyframes motion { 0% { opacity: 1; transform: translateX(-101vw); } 97% { opacity: 1; } 98% { opacity: 0; } 100% { opacity: 0; transform: translateX(calc(0% + 100px)); } } |
2#: Следующий код поместите после открывающего тега <body>:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
<div class="pen-container"> <div class="plane plane-1"> <i></i> </div> <div class="plane plane-2"> <i></i> </div> <div class="plane plane-3"> <i></i> </div> <div class="plane plane-4"> <i></i> </div> <div class="plane plane-5"> <i></i> </div> <div class="plane plane-6"> <i></i> </div> <div class="plane plane-7"> <i></i> </div> <div class="plane plane-8"> <i></i> </div> <div class="plane plane-9"> <i></i> </div> <div class="plane plane-10"> <i></i> </div> </div> |
3#: Осталось лишь залить файл из прикреплённого архива в папку img