XenForo دکمه عضویت چشمک زن در زنفورو

  • Thread starter
  • Admin
  • extra.less : کد زیر را به قالب اضافه کنید
Code:
.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);}}
  • Page_container : کد زیر را در قالب پیدا کنید
HTML:
<span class="p-navgroup-linkText">{{ phrase('register') }}</span>
  • و با کد زیر جایگزین کنید
HTML:
<span class="p-navgroup-linkText"><span class="pulse">{{ phrase('register') }}</span></span>
 
  • Tags
    آموزش دکمه عضویت چشمک زن در زنفورو دکمه عضویت چشمک زن در زنفورو نمایش دکمه عضویت چشمک زن در زنفورو
  • Back
    Top Bottom