Before/After viewer with Draggable and TweenMax

Developer
Size
2,738 Kb
Views
56,672

How do I make an before/after viewer with draggable and tweenmax?

Just this effect - before and after using TweenMax and DraggableImages copyrighted to Ivaylo Yovchev Photography. What is a before/after viewer with draggable and tweenmax? How do you make a before/after viewer with draggable and tweenmax? This script and codes were developed by Chrysto on 16 July 2022, Saturday.

Before/After viewer with Draggable and TweenMax Previews

Before/After viewer with Draggable and TweenMax - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Before/After viewer with Draggable and TweenMax</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <!-- Adding TweenMax (or TweenLite+CSSPLugin) and Draggable -->
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/utils/Draggable.min.js"></script>
<!-- The actual markup -->
<ul id="controls">	<li class="to-start">Before</li>	<li class="to-middle">Compare</li>	<li class="to-end">After</li>
</ul>
<div id="before-after">	<div class="view view-after"><img src="http://cloud.bassta.bg/img-after.jpg" /></div>	<div class="view view-before"><img src="http://cloud.bassta.bg/img-before.jpg" /></div>	<div id="dragme"></div>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Before/After viewer with Draggable and TweenMax - Script Codes CSS Codes

body, div, p{	margin: 0;	padding: 0;	font-family: Helvetica, sans-serif;
}	#before-after{	position: relative;	width: 600px;	height: 500px;	border: 2px solid grey;	margin: 50px auto 0px;;	}	.view{	position: absolute;	top: 0px;	left: 0px;	width: 100%;	height: 100%;	overflow: hidden;	} .view-before{ z-index: 100; } .view-after{	z-index: 200;	}	#dragme{	position: absolute;	width: 5px;	height: 100%;	top: 0px;	left: 0px;	background-color: black;	cursor: pointer;	z-index: 300;	}	/*	Controls	*/	ul{	text-align: center;	margin-top: 50px;	}	ul li{	list-style: none;	display: inline-block;	font-size: 17px;	cursor: pointer;	margin: 0px 20px 0px 20px	}

Before/After viewer with Draggable and TweenMax - Script Codes JS Codes

$(function(){ /* Dependencies : TweenMax and Draggable Images by Ivaylo Yovchev ( http://www.ivayloyovchev.com/ ) Test on touch device @ http://cloud.bassta.bg/before-after.html */ var $dragMe = $("#dragme"); var $beforeAfter	= $("#before-after"); var $viewAfter = $(".view-after"); Draggable.create($dragMe, { type:"left", bounds: $beforeAfter, onDrag:updateImages }); function updateImages(){ TweenLite.set($viewAfter, {width: $dragMe.css("left") });	//or this.x if only dragging } //Intro Animation animateTo(350); //Externall nav $(".to-start").on("click", function(){ animateTo(0); }); $(".to-middle").on("click", function(){ animateTo(298); }); $(".to-end").on("click", function(){ animateTo(598); }); function animateTo(_left){ TweenLite.to( $dragMe, 1, {left: _left, onUpdate: updateImages }); } //V2 Click added $beforeAfter.on("click", function(event){ var eventLeft = event.clientX - $beforeAfter.offset().left; animateTo(eventLeft); });
});//end jQuery wrapper
Before/After viewer with Draggable and TweenMax - Script Codes
Before/After viewer with Draggable and TweenMax - Script Codes
Home Page Home
Developer Chrysto
Username bassta
Uploaded July 16, 2022
Rating 4.5
Size 2,738 Kb
Views 56,672
Do you need developer help for Before/After viewer with Draggable and TweenMax?

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 SEO content 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!