Прелоадер в виде котёнка, наблюдающего за мячиком на 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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
.wrapper { display:flex; justify-content:center; align-items:center; height:95vh; } .cat { position: absolute; width:200px; height: 100px; /* margin: 20px auto; */ overflow: hidden; background-color: #fff; } .cat img { width:100%; position:absolute; left: calc(50% - 100px); top: -50px; } .ears{ position:absolute } .ear { width:0; border-left:10px solid transparent; border-right:10px solid transparent; border-bottom:20px solid pink; position: relative; } .eLeft { left: -49px; top: -16px; transform: rotate(-48deg); } .eRight { left: 49px; top: -36px; transform: rotate(48deg); } .eye { position: absolute; width:28px; height:28px; background-color: #071; box-shadow: 5px 5px 6px #0f2 inset; border-radius: 50%; border: 1px solid #000; top:41px; overflow:hidden; animation: eyesTrackShadow 1.5s ease-in-out infinite alternate; } .left {left: calc(50% - 35px);} .right {left: calc(50% + 6px);} .eyeWatch{ width: 7px; height:20px; background-color: #000; border-radius: 50%; margin-top: 8px; margin-left:20px; transform:rotate(25deg); animation: trackIt 1.5s ease-in-out infinite alternate; overflow:hidden; } .glare { width:5px; height:5px; background-color: #fff; border-radius:50%; position:relative; top:3px; animation: light 1.5s ease-in-out infinite alternate; } .eyelids { width:90px; height:1px; position:absolute; z-index:1; top:35px; left: calc(50% - 45px); background-color: #000; animation: blink 6s ease-in-out infinite alternate; } .nose{ width:14px; height:5px; background-color: pink; position:absolute; top:70px; border-radius:50% 50% 0 0; left:calc(50% - 7px); } .claws{ width: 3px; height: 10px; position: absolute; background-color: #fff; border-radius: 50%; box-shadow: 0 1px 2px #000; } .c1{top: 78px;left: 25px;transform:rotatez(25deg);} .c2{top: 83px;left: 41px;} .c3{top: 78px;left: 56px;transform:rotatez(-25deg);} .c4{top: 78px;right: 25px;transform:rotatez(-25deg);} .c5{top: 83px;right: 41px;} .c6{top: 78px;right: 56px;transform:rotatez(25deg);} .ballContainer { width: 100%; margin-top:140px; } .ball { width:20px; height:20px; background-color: red; box-shadow: 1px -1px 3px #000 inset; border-radius: 50%; position:absolute; animation: ballLight 1.5s ease-in-out infinite alternate; } .ballShadow{ width:20px; height:15px; background-color: #000; margin-left: calc(50% + 90px); border-radius: 50%; position:absolute; box-shadow: 0 0 5px 2px #fff inset; animation: ballRolling 1.5s ease-in-out infinite alternate; } @keyframes trackIt { from{ margin-left:21px; transform:rotate(25deg); } to{ margin-left:0px; transform:rotate(-25deg); } } @keyframes eyesTrackShadow { from{box-shadow: 5px 5px 6px #0f2 inset;} to {box-shadow: -5px 5px 6px #0f2 inset;} } @keyframes light { 0%{transform: translateX(-2px);opacity:3;} 50%{opacity:1;} 100%{transform: translateX(4px);opacity:3;} } @keyframes blink { 0%{height: 1px;} 3%{height: 35px;} 4%{height: 1px;} 100%{height: 1px;} } @keyframes ballRolling { 0%{margin-left: calc(50% + 90px);} 100%{margin-left: calc(50% - 90px);} } @keyframes ballLight { 0%{ box-shadow: -1px -1px 3px #000 inset; margin: -10px 0 0 -3px; } 100%{ box-shadow: 1px -1px 3px #000 inset; margin: -10px 0 0 3px; } } |
2#: На нужной странице между тегами <body> и </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 |
<div class="wrapper"> <div class="cat"><img src="/img/cat.png"/> <div class="eyelids"></div> <div class="eye left"> <div class="eyeWatch"> <div class="glare"></div> </div> </div> <div class="eye right"> <div class="eyeWatch"> <div class="glare"></div> </div> </div> <div class="nose"></div> <div class="claws c1"></div> <div class="claws c2"></div> <div class="claws c3"></div> <div class="claws c4"></div> <div class="claws c5"></div> <div class="claws c6"></div> </div> <div class="ballContainer"> <div class="ballShadow"> <div class="ball"></div> </div> </div> <div class="ears"> <div class="ear eLeft"></div> <div class="ear eRight"></div> </div> </div> |
Осталось лишь залить картинку из прикреплённого файла в папку img