XenForo Dikkat Çeken Kayıt Ol Butonu Nasıl Yapılır?

Katılım
11 Şub 2020
Mesajlar
288
Aldığı beğeni
5
Puanları
18
Konum
İstanbul
Ticaret: 1 / 0 / 0
NASIL Yapılır:
1- )
Kullanmak olduğunuz temanızın "extra.less" şablonuna şu kodları ilave ediyoruz.

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);}}

2-) "Page_Container" şablonunda :

BUL:

Kod:
<span class="p-navgroup-linkText">{{ phrase('register') }}</span>

DEĞİŞTİR:
Kod:
<span class="p-navgroup-linkText"><span class="pulse">{{ phrase('register') }}</span></span>

Screenshot_10.png
 
Üst