Unblur on scroll

Developer
Size
1,930 Kb
Views
28,336

How do I make an unblur on scroll?

What is a unblur on scroll? How do you make a unblur on scroll? This script and codes were developed by Dave DeHaan on 04 January 2023, Wednesday.

Unblur on scroll Previews

Unblur on scroll - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Unblur on scroll</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <html> <body> <div id="hero"> <img src="http://lamplighter.io/app-assets/img/email-header.png"> <h2>Gain Focus</h2> <h3>Gain Clarity</h3> </div> </body>
</html> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Unblur on scroll - Script Codes CSS Codes

body { margin: 0px; padding: 0px; min-height: 2000px; font-family: sans-serif; color: #333;
}
#hero { margin: 0px auto; background-size: cover; width: 640px; height: 500px; background: #EEE; -webkit-filter: blur(10px); position: fixed; left: 50%; margin-left: -320px;
}
h2 { font-size: 50px; text-align: center;
}
h3 { font-size: 35px; text-align: center;
}

Unblur on scroll - Script Codes JS Codes

$(window).scroll(function() { var heroBlur = 10 - Math.floor($(this).scrollTop() / 100); if (heroBlur < 0) { heroBlur = 0; } $('#hero').css({ '-webkit-filter': 'blur('+heroBlur+'px)' });
});
Unblur on scroll - Script Codes
Unblur on scroll - Script Codes
Home Page Home
Developer Dave DeHaan
Username davedehaan
Uploaded January 04, 2023
Rating 3
Size 1,930 Kb
Views 28,336
Do you need developer help for Unblur on scroll?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Dave DeHaan (davedehaan) Script Codes
Create amazing marketing copy with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!