We are cute
  • Max Holden
    Founder & Art Director
    Max invented our company. He is the father of our main goals and values.

    Подробнее
  • Lucy Good
    Design Director
    Julia takes care of everything you can see. She spent five years in London learning visual communication.

    Подробнее
  • Eva Stark
    Customers Support
    Eva is the voice of our brand. She spends hours to make our clients feel care and enjoy communication with the company.
    Подробнее

Как сделать реакцию на курсор мышки при наведении на ссылки для Tilda


Скрипт добавляется в блок ДРУГОЕ►Т123

Вместо XXXXXXXX прописать id своего блока


<script>
  
 $(document).ready(function() {  

//События для ссылок в тексте
 $("#recXXXXXXXX u").mouseover(function () { 
 $(this).css({color: '#F50057', fontWeight: '600'}); //При наведении цвет и жирность
  });
 
  $("#recXXXXXXXX u").mouseout(function (){
  $(this).css({color: '#FF855D', fontWeight: '300'}); //Базовый цвет и жирность
 });
 
 $("#recXXXXXXXX u").mousedown(function (){
 $(this).css("color","#000000"); //Цвет нажатия
 });
 
 //События для кнопки 
  $(" .t-section__bottomwrapper a").mouseover(function (){
 $(this).css("background-color","#ffbaa3"); //Цвет пра наведении
 });

  $(" .t-section__bottomwrapper a").mousedown(function (){
 $(this).css("background-color","#eb4c17"); //Цвет нажатия
 });
 
  $(" .t-section__bottomwrapper a").mouseout(function (){
 $(this).css("background-color","#FF855D"); //Цвет нажатия
 });
 });
</script>
Made on
Tilda