Классная анимированная кнопка "Скачать" на CSS3 и SVG
Классная кнопочка "Скачать" с необычной анимацией
Для начала посмотрите ДЕМО
Установка:
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 |
.button { --background: #2B3044; --text: #fff; --icon: #fff; --icon-success: #16BF78; display: flex; outline: none; border: 0; padding: 0 22px 0 16px; min-width: 150px; overflow: hidden; cursor: pointer; border-radius: 9px; background: var(--background); transition: -webkit-transform .2s; transition: transform .2s; transition: transform .2s, -webkit-transform .2s; } .button:active { -webkit-transform: scale(0.95); transform: scale(0.95); } .button ul { margin: 0; padding: 13px 0; list-style: none; text-align: center; position: relative; -webkit-backface-visibility: hidden; backface-visibility: hidden; font-size: 16px; font-weight: 500; line-height: 25px; color: var(--text); } .button ul li:not(:first-child) { top: var(--t, 13px); left: 0; position: absolute; } .button ul li:nth-child(2) { --t: 64px; } .button ul li:nth-child(3) { --t: 115px; min-width: 120px; } .button .icon { width: 24px; height: 24px; position: relative; display: inline-block; vertical-align: top; margin: 14px 10px 0 0; -webkit-transform: translateY(calc(var(--y, 0) * 1px)); transform: translateY(calc(var(--y, 0) * 1px)); } .button .icon svg { width: var(--w, 14px); height: var(--h, 15px); display: block; fill: none; stroke: var(--s, var(--icon)); stroke-width: var(--sw, 2); stroke-linejoin: round; stroke-linecap: round; } .button .icon > svg, .button .icon div { left: var(--l, 7px); top: var(--t, 2px); position: absolute; } .button .icon > svg { -webkit-transform: translateY(calc(var(--y, 0) * 1px)); transform: translateY(calc(var(--y, 0) * 1px)); } .button .icon > svg polyline, .button .icon > svg line { stroke-dasharray: var(--a, 12px); stroke-dashoffset: var(--o, 0); stroke: var(--s, var(--icon)); transition: stroke-dashoffset var(--d, 0.15s), stroke 0.4s; } .button .icon > svg polyline { --d: .25s; --a: 17px; --o: 5.5px; } .button .icon div { --w: 24px; --h: 24px; --l: 0; --t: 8px; --sw: 1.5; } .button.loading ul { -webkit-animation: text 1750ms linear forwards 100ms; animation: text 1750ms linear forwards 100ms; } .button.loading.complete .icon svg line { --o: 12px; } .button.loading.complete .icon svg polyline { --o: 0; --s: var(--icon-success); } @-webkit-keyframes text { 18%, 82% { -webkit-transform: translateY(-100%); transform: translateY(-100%); } 100% { -webkit-transform: translateY(-200%); transform: translateY(-200%); } } @keyframes text { 18%, 82% { -webkit-transform: translateY(-100%); transform: translateY(-100%); } 100% { -webkit-transform: translateY(-200%); transform: translateY(-200%); } } |
2#: В том месте, где хотите видеть кнопочку, вставьте:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<button class="button"> <div class="icon"> <svg viewBox="0 0 14 15"> <line x1="5" y1="13" x2="5" y2="1"></line> <polyline id="tick" points="1 9.5 5 13.5 13 5.5"></polyline> <polyline id="normal" points="1 9.5 5 13.5 9 9.5"></polyline> </svg> <div> <svg viewBox="0 0 24 24"></svg> </div> </div> <ul> <li>Скачать файл</li> <li>Подготовка...</li> <li>Начать загрузку</li> </ul> </button> <script type="text/javascript" src="/js/gsap-latest-beta.min.js"></script> <script type="text/javascript" src="/js/dbutton.js"></script> |
Осталось лишь залить два JS файла из прикреплённого архива в папку js
А куда здесь вставлять ссылку на сам файл для загрузки?
Просто замени
На: