|
11 | 11 | margin: 100px 0px 0px;
|
12 | 12 | }
|
13 | 13 |
|
| 14 | +.start { |
| 15 | + position: relative; |
| 16 | + background-image: url(http://cdn.onlinewebfonts.com/svg/download_71708.png); |
| 17 | + background-position: center; |
| 18 | + background-repeat: no-repeat; |
| 19 | + background-size: contain; |
| 20 | + animation-name: specialNodes; |
| 21 | + animation-duration: 2s; |
| 22 | + animation-timing-function: ease-out; |
| 23 | + animation-delay: 0; |
| 24 | + animation-direction: alternate; |
| 25 | + animation-iteration-count: 1; |
| 26 | + animation-fill-mode: forwards; |
| 27 | + animation-play-state: running; |
| 28 | +} |
| 29 | + |
| 30 | +/* */ |
| 31 | + |
| 32 | +.end { |
| 33 | + position: relative; |
| 34 | + background-image: url(http://cdn.onlinewebfonts.com/svg/img_208778.png); |
| 35 | + background-position: center; |
| 36 | + background-repeat: no-repeat; |
| 37 | + background-size: contain; |
| 38 | + animation-name: specialNodes; |
| 39 | + animation-duration: 2s; |
| 40 | + animation-timing-function: ease-out; |
| 41 | + animation-delay: 0; |
| 42 | + animation-direction: alternate; |
| 43 | + animation-iteration-count: 1; |
| 44 | + animation-fill-mode: forwards; |
| 45 | + animation-play-state: running; |
| 46 | +} |
| 47 | + |
14 | 48 | /* .icon::before{
|
15 | 49 | display: inline-block;
|
16 | 50 | font-style:normal;
|
@@ -207,32 +241,19 @@ li.nav-item {
|
207 | 241 | padding-top: 6px;
|
208 | 242 | }
|
209 | 243 |
|
210 | | -.start { |
211 | | - position: relative; |
212 | | - background-image: url(http://cdn.onlinewebfonts.com/svg/download_71708.png); |
213 | | - background-position: center; |
214 | | - background-repeat: no-repeat; |
215 | | - background-size: contain; |
216 | | - animation-duration: 1.5s; |
217 | | - animation-timing-function: ease-out; |
218 | | - animation-direction: alternate; |
219 | | - animation-iteration-count: 1; |
220 | | - animation-fill-mode: forwards; |
221 | | - animation-play-state: running; |
222 | | -} |
| 244 | +@keyframes specialNodes { |
| 245 | + 0% { |
| 246 | + transform: scale(0.3); |
| 247 | + /*background-color: darkslategrey;*/ |
| 248 | + } |
223 | 249 |
|
224 | | -/* */ |
| 250 | + 50% { |
| 251 | + transform: scale(1.2); |
| 252 | + /*background-color: darkslategrey;*/ |
| 253 | + } |
225 | 254 |
|
226 | | -.end { |
227 | | - position: relative; |
228 | | - background-image: url(http://cdn.onlinewebfonts.com/svg/img_208778.png); |
229 | | - background-position: center; |
230 | | - background-repeat: no-repeat; |
231 | | - background-size: contain; |
232 | | - animation-duration: 1.5s; |
233 | | - animation-timing-function: ease-out; |
234 | | - animation-direction: alternate; |
235 | | - animation-iteration-count: 1; |
236 | | - animation-fill-mode: forwards; |
237 | | - animation-play-state: running; |
| 255 | + 100% { |
| 256 | + transform: scale(1); |
| 257 | + /*background-color: darkslategrey;*/ |
| 258 | + } |
238 | 259 | }
|
0 commit comments