Changes

From Life After BOB Wiki
163 bytes added ,  16:31, 12 June 2021
no edit summary
Line 13: Line 13:  
//hover
 
//hover
   −
$('.fc-img').hover(function(){
+
$('.fc-img').onmouseenter(function(){
 
   console.log("on hover");
 
   console.log("on hover");
   $(this).parent().css('background','white')
+
   $(this).parent().css('background','rgba(255, 255, 255, 0.3)')
 
})
 
})
 +
 +
$('.fc-img').onmouseenter(function(){
 +
  console.log("on hover");
 +
  $(this).parent().css('background','rgba(255, 255, 255, 0.87)')
 +
})
 +