Октябрь 2015 — Статьи

Eugen Nichikov 1 октября 2015

В файл head.html добавляем

<style type="text/css">
.callback-show-alert-border3 {
    -webkit-animation:none;
    animation:none;
}
.callback-show-alert-border2,.callback-show-alert-border1 {
    -webkit-animation:none;
    animation:none;
    opacity:0;
}
.callback-show-alert:hover .callback-show-alert-border1 {
    -webkit-animation:callback-show-alert-border1 1300ms linear infinite forwards;
    animation:callback-show-alert-border1 1300ms linear infinite forwards;
}
.callback-show-alert:hover .callback-show-alert-border2 {
    -webkit-animation:callback-show-alert-border2 1300ms linear infinite forwards;
    animation:callback-show-alert-border2 1300ms linear infinite forwards;
}
.callback-show-alert:hover .callback-show-alert-border3 {
    -webkit-animation:callback-show-alert-border3 1300ms linear infinite forwards;
    animation:callback-show-alert-border3 1300ms linear infinite forwards;
}</style>