Part 3 / Special elements / <svelte:body>
Similar to <svelte:window>
, the <svelte:body>
element allows you to listen for events that fire on document.body
. This is useful with the mouseenter
and mouseleave
events, which don't fire on window
.
Add the mouseenter
and mouseleave
handlers to the <svelte:body>
tag:
<svelte:body
on:mouseenter={handleMouseenter}
on:mouseleave={handleMouseleave}
/>
initialising