Fullscreen Parallax

Developer
Size
3,313 Kb
Views
56,672

How do I make an fullscreen parallax?

What is a fullscreen parallax? How do you make a fullscreen parallax? This script and codes were developed by Chrysto on 16 July 2022, Saturday.

Fullscreen Parallax Previews

Fullscreen Parallax - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Fullscreen Parallax</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id="content"> <p>TweenMax Parallax</p> <p>Retro trust fund etsy thundercats. Leggings blog reprehenderit photo booth, mlkshk pork belly ethical truffaut nesciunt typewriter helvetica wes anderson. Accusamus dreamcatcher narwhal raw denim sunt truffaut. Narwhal bespoke nihil cliche gastropub, echo park tofu wolf portland nulla. High life cray +1 raw denim aute, mlkshk DIY velit adipisicing aesthetic tofu freegan. DIY ullamco magna, biodiesel williamsburg cosby sweater ut keffiyeh. Vinyl accusamus eiusmod gluten-free, selvage consectetur nisi.</p> <p>Retro trust fund raw denim squid, do vegan eu. Dolore direct trade semiotics next level biodiesel freegan magna nostrud flexitarian williamsburg. Esse cillum aesthetic consectetur swag. VHS ullamco pariatur trust fund, ad williamsburg quis selvage occupy. Organic irony american apparel ennui, fanny pack artisan cupidatat direct trade aliqua nostrud. Lomo non sapiente fixie eiusmod organic. Seitan wes anderson farm-to-table, wolf four loko godard fingerstache truffaut odd future post-ironic ad.</p> <p>Viral organic aute, gentrify qui officia blog vinyl pork belly mustache banksy pariatur readymade. Vegan tempor nesciunt eiusmod gluten-free elit ethnic blog typewriter, do sed. Aliquip non laboris, anim nostrud gentrify before they sold out aliqua iphone lomo chillwave cillum irony biodiesel portland. Flexitarian irure food truck, fingerstache fixie nulla terry richardson bespoke yr cillum ad laborum raw denim. Cosby sweater williamsburg whatever Austin, 8-bit pickled terry richardson iphone ethnic. Scenester letterpress culpa typewriter, high life aliquip dreamcatcher proident viral stumptown iphone flexitarian. Nesciunt readymade aliqua artisan bespoke, anim polaroid magna brooklyn bushwick brunch fugiat forage ad.</p> <p>DIY PBR blog, occaecat chambray jean shorts thundercats VHS 8-bit. Direct trade viral ex magna master cleanse cray. Occaecat messenger bag farm-to-table, commodo truffaut terry richardson butcher proident ex selvage hoodie DIY assumenda. Mcsweeney's ennui pork belly, id odd future umami farm-to-table nesciunt tumblr kogi williamsburg. Iphone helvetica voluptate gentrify. Magna +1 thundercats adipisicing craft beer aliqua. Artisan brunch freegan salvia yr before they sold out.</p> <p>Cray eu mollit +1, pour-over small batch labore bespoke kale chips pitchfork consectetur wolf. Sed flexitarian master cleanse, ethical stumptown id laborum forage. American apparel aliqua ethical bespoke farm-to-table. Culpa mcsweeney's exercitation carles kogi high life, vegan artisan pinterest mlkshk retro quinoa aute sint authentic. Narwhal kogi locavore trust fund. Iphone umami aliquip, anim cardigan next level magna mollit brunch. Messenger bag proident kogi ennui nisi esse.</p> <p>Viral organic aute, gentrify qui officia blog vinyl pork belly mustache banksy pariatur readymade. Vegan tempor nesciunt eiusmod gluten-free elit ethnic blog typewriter, do sed. Aliquip non laboris, anim nostrud gentrify before they sold out aliqua iphone lomo chillwave cillum irony biodiesel portland. Flexitarian irure food truck, fingerstache fixie nulla terry richardson bespoke yr cillum ad laborum raw denim. Cosby sweater williamsburg whatever Austin, 8-bit pickled terry richardson iphone ethnic. Scenester letterpress culpa typewriter, high life aliquip dreamcatcher proident viral stumptown iphone flexitarian. Nesciunt readymade aliqua artisan bespoke, anim polaroid magna brooklyn bushwick brunch fugiat forage ad.</p> </div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Fullscreen Parallax - Script Codes CSS Codes

body,html {	font-family:Helvetica,sans-serif;	margin:0;	padding:0;
}
body {	background:url(http://cloud.bassta.bg/bg.jpg) top center no-repeat fixed #fff;	background-size:2000px 1200px;
}
#content {	margin:100px auto;	width:600px;
}
#content p {	background-color:rgba(0,0,0,0.7);	margin-bottom:50px;	color:#fff;	padding:20px;
}
#content p:first-child {	margin-bottom:450px;	font-size:3em;	text-align:center;
}

Fullscreen Parallax - Script Codes JS Codes

$(function(){	var $win = $(window);	var $doc = $(document);	var $body = $("body");	var bgHeight = 1200; //height of the background image;	var docHeight, winHeight, maxScroll;	function onResize(){	docHeight = $doc.height();	winHeight = $win.height();	maxScroll = docHeight - winHeight;	moveParallax();	}	function moveParallax(){	var bgYPos = -(bgHeight-winHeight)* ($win.scrollTop() / maxScroll);	TweenLite.to($body, 0.1, {backgroundPosition: "50% " + bgYPos + "px"});	}	$win.on("scroll", moveParallax).on("resize", onResize).resize();	});
Fullscreen Parallax - Script Codes
Fullscreen Parallax - Script Codes
Home Page Home
Developer Chrysto
Username bassta
Uploaded July 16, 2022
Rating 3.5
Size 3,313 Kb
Views 56,672
Do you need developer help for Fullscreen Parallax?

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!

Chrysto (bassta) Script Codes
Create amazing Facebook ads 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!