Hoşgeldin Misafir

XenForo Animasyonlu Kayıt Ol Düğmesi

xS0N3R

23 Ağu 2020
5,427 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
XenForo 2.X.X Uyumlu Animasyonlu Kayıt Ol Düğmesi
Bu kod değişimi sonrası kayıt ol düğmesinin üzerinde durduğunuzda şekil değiştirmektedir.

Temanızın Extra.less alanını açın aşağıdakileri ekleyin;
Kod:
/* PULSE ANIMATION */
.pulse {
position: relative;
box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
cursor: pointer;
-webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
-moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
-ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.pulse:hover {
-webkit-animation: none;-moz-animation: none;-ms-animation: none;animation: none;
}

@-webkit-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}

Ardından PAGE_CONTAINER şablonunu açın aşağıdaki kodu bulun;

Aşağıdaki kod ile değişitirin;
Kod:
<span class="p-navgroup-linkText"><span class="pulse">{{ phrase('register') }}</span></span>