Sep 5, 2020
White Arrow icon
Back to all Elements

Hover to reveal Mask

A fixed background image that is revealed by mouse hover all over the section

I recreated this codepen by @suez in Webflow.

Create the following hierarchy:

  1. Full page div/section
  2. Add a div with the size and shape of your mask revealer and a background image of your choice and position:absolute. Place it inside the full page section.
  3. Paste this code to your page custom code section, before </body> tag:

<script>
 document.addEventListener('DOMContentLoaded', (ev) => {
   const circle = document.querySelector('.hover-div');
   const circleHalf = circle.offsetWidth / 2;

   addEventListener("mousemove", (e) => {
     console.log(e.pageX, e.pageY);
     circle.style.left = e.pageX - circleHalf + "px";
     circle.style.top = e.pageY - circleHalf + "px";
   });
 });
</script>

Copy
  1. Replace the ".hover-div" with your mask (circle) div classname (replace only the hover-div, keep the ' ' and the .
  2. Publish :) 

Preview:

browser mockup
Share:
Heart icon

Destin's Youtube channel Smarter Every Day is one of my favourite places on the web.

Might also interest you:

3d Video Slider (swiper.js)

Cloneable
CMS
JavaScript

A 3d slider with video items, plays and pauses on click & slide change.

Read more
Blue arrow iconWhite Arrow icon

Webflow Dashboard Workspaces Hack

Webflow UI Hack
Code
CSS

Convert the Workspaces dropdown to an open sidebar with custom order.

Read more
Blue arrow iconWhite Arrow icon

Glossary

Cloneable
JavaScript
CMS

A clonable for creating an Alphabetical glossary

Read more
Blue arrow iconWhite Arrow icon