Trying to set a scale on title
Hi everyone
I realise simple effect on a page who have a title the purpose is when the mouse is on the title
the mouse should grow
my css:
the problem I have the scale work near on the title not on the title
can I have some idea ti fix this ?
thanks
1 Reply
I think that the issue is that the html element ".mouse" is actually getting the mouseover rather than the h1. It only appears to work as you get near due to the transition that you have on the mouse so, for the briefest of time, the pointer does manage to get over the h1 element before the mouse element reaches it.
You should be able to resolve this by adding
pointer-events: none;
to your .mouse selector.