|
2 | 2 |
|
3 | 3 | /*! |
4 | 4 | * animate.css -http://daneden.me/animate |
5 | | - * Version - 3.6.0 |
| 5 | + * Version - 3.6.1 |
6 | 6 | * Licensed under the MIT license - http://opensource.org/licenses/MIT |
7 | 7 | * |
8 | 8 | * Copyright (c) 2018 Daniel Eden |
|
370 | 370 | animation-name: headShake; |
371 | 371 | } |
372 | 372 |
|
373 | | -@-webkit-keyframes heartBeat{ |
374 | | - 0%{ |
375 | | - transform: scale(1); |
376 | | - } |
377 | | - |
378 | | - 14%{ |
379 | | - transform: scale(1.3); |
380 | | - } |
381 | | - |
382 | | - 28%{ |
383 | | - transform: scale(1); |
384 | | - } |
385 | | - |
386 | | - 42%{ |
387 | | - transform: scale(1.3); |
388 | | - } |
389 | | - |
390 | | - 70%{ |
391 | | - transform: scale(1); |
392 | | - } |
393 | | - |
394 | | -} |
395 | | - |
396 | | -@keyframes heartBeat{ |
397 | | - 0%{ |
398 | | - transform: scale(1); |
399 | | - } |
400 | | - |
401 | | - 14%{ |
402 | | - transform: scale(1.3); |
403 | | - } |
404 | | - |
405 | | - 28%{ |
406 | | - transform: scale(1); |
407 | | - } |
408 | | - |
409 | | - 42%{ |
410 | | - transform: scale(1.3); |
411 | | - } |
412 | | - |
413 | | - 70%{ |
414 | | - transform: scale(1); |
415 | | - } |
416 | | - |
417 | | -} |
418 | | - |
419 | | -.heartBeat{ |
420 | | - -webkit-animation-name: heartBeat; |
421 | | - animation-name: heartBeat; |
422 | | - -webkit-animation-duration: 1.3s; |
423 | | - animation-duration: 1.3s; |
424 | | - -webkit-animation-timing-function: ease-in-out; |
425 | | - animation-timing-function: ease-in-out; |
426 | | -} |
427 | | - |
428 | 373 | @-webkit-keyframes swing { |
429 | 374 | 20% { |
430 | 375 | -webkit-transform: rotate3d(0, 0, 1, 15deg); |
|
733 | 678 | transform-origin: center; |
734 | 679 | } |
735 | 680 |
|
| 681 | +@-webkit-keyframes heartBeat { |
| 682 | + 0% { |
| 683 | + -webkit-transform: scale(1); |
| 684 | + transform: scale(1); |
| 685 | + } |
| 686 | + |
| 687 | + 14% { |
| 688 | + -webkit-transform: scale(1.3); |
| 689 | + transform: scale(1.3); |
| 690 | + } |
| 691 | + |
| 692 | + 28% { |
| 693 | + -webkit-transform: scale(1); |
| 694 | + transform: scale(1); |
| 695 | + } |
| 696 | + |
| 697 | + 42% { |
| 698 | + -webkit-transform: scale(1.3); |
| 699 | + transform: scale(1.3); |
| 700 | + } |
| 701 | + |
| 702 | + 70% { |
| 703 | + -webkit-transform: scale(1); |
| 704 | + transform: scale(1); |
| 705 | + } |
| 706 | +} |
| 707 | + |
| 708 | +@keyframes heartBeat { |
| 709 | + 0% { |
| 710 | + -webkit-transform: scale(1); |
| 711 | + transform: scale(1); |
| 712 | + } |
| 713 | + |
| 714 | + 14% { |
| 715 | + -webkit-transform: scale(1.3); |
| 716 | + transform: scale(1.3); |
| 717 | + } |
| 718 | + |
| 719 | + 28% { |
| 720 | + -webkit-transform: scale(1); |
| 721 | + transform: scale(1); |
| 722 | + } |
| 723 | + |
| 724 | + 42% { |
| 725 | + -webkit-transform: scale(1.3); |
| 726 | + transform: scale(1.3); |
| 727 | + } |
| 728 | + |
| 729 | + 70% { |
| 730 | + -webkit-transform: scale(1); |
| 731 | + transform: scale(1); |
| 732 | + } |
| 733 | +} |
| 734 | + |
| 735 | +.heartBeat { |
| 736 | + -webkit-animation-name: heartBeat; |
| 737 | + animation-name: heartBeat; |
| 738 | + -webkit-animation-duration: 1.3s; |
| 739 | + animation-duration: 1.3s; |
| 740 | + -webkit-animation-timing-function: ease-in-out; |
| 741 | + animation-timing-function: ease-in-out; |
| 742 | +} |
| 743 | + |
736 | 744 | @-webkit-keyframes bounceIn { |
737 | 745 | from, |
738 | 746 | 20%, |
|
0 commit comments