Last active
April 20, 2023 02:19
-
-
Save alojzije/764ad1e705f5f730316a to your computer and use it in GitHub Desktop.
mouse scroll horizontal slider jQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Horizontal scroll slider demo</title> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
<link rel="stylesheet" type="text/css" href="style_demonstration.css"> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | |
</head> | |
<body> | |
<!-- spacers, only for demonstration purposes, to be removed --> | |
<div class="spacer_vertical"></div> | |
<div class="spacer_horizontal"></div> | |
<!-- the slider clean--> | |
<div class="shower"> | |
<div class="holder"> | |
<div class="slide" id="slide-0"></div> | |
<div class="slide" id="slide-1"></div> | |
<div class="slide" id="slide-2"></div> | |
</div> | |
</div> | |
<!-- end of slider clean--> | |
<!-- spacers, only for demonstration purposes, to be removed --> | |
<div class="spacer_vertical"></div> | |
<div class="spacer_horizontal"></div> | |
<!-- the slider embelished for demonstration purposes--> | |
<div class="shower_demonstr"> | |
<div class="holder_demonstr"> | |
<div class="slide_demonstr" id="slide-0"></div> | |
<div class="slide_demonstr" id="slide-1"></div> | |
<div class="slide_demonstr" id="slide-2"></div> | |
</div> | |
</div> | |
<script src="jquery.mousewheel.min.js"></script> | |
<script src="slide.js"></script> | |
</body> | |
</html> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! Copyright (c) 2013 Brandon Aaron (http://brandon.aaron.sh) | |
* Licensed under the MIT License (LICENSE.txt). | |
* | |
* Version: 3.1.11 | |
* | |
* Requires: jQuery 1.2.2+ | |
*/ | |
!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a:a(jQuery)}(function(a){function b(b){var g=b||window.event,h=i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detail"in g&&(m=-1*g.detail),"wheelDelta"in g&&(m=g.wheelDelta),"wheelDeltaY"in g&&(m=g.wheelDeltaY),"wheelDeltaX"in g&&(l=-1*g.wheelDeltaX),"axis"in g&&g.axis===g.HORIZONTAL_AXIS&&(l=-1*m,m=0),j=0===m?l:m,"deltaY"in g&&(m=-1*g.deltaY,j=m),"deltaX"in g&&(l=g.deltaX,0===m&&(j=-1*l)),0!==m||0!==l){if(1===g.deltaMode){var q=a.data(this,"mousewheel-line-height");j*=q,m*=q,l*=q}else if(2===g.deltaMode){var r=a.data(this,"mousewheel-page-height");j*=r,m*=r,l*=r}if(n=Math.max(Math.abs(m),Math.abs(l)),(!f||f>n)&&(f=n,d(g,n)&&(f/=40)),d(g,n)&&(j/=40,l/=40,m/=40),j=Math[j>=1?"floor":"ceil"](j/f),l=Math[l>=1?"floor":"ceil"](l/f),m=Math[m>=1?"floor":"ceil"](m/f),k.settings.normalizeOffset&&this.getBoundingClientRect){var s=this.getBoundingClientRect();o=b.clientX-s.left,p=b.clientY-s.top}return b.deltaX=l,b.deltaY=m,b.deltaFactor=f,b.offsetX=o,b.offsetY=p,b.deltaMode=0,h.unshift(b,j,l,m),e&&clearTimeout(e),e=setTimeout(c,200),(a.event.dispatch||a.event.handle).apply(this,h)}}function c(){f=null}function d(a,b){return k.settings.adjustOldDeltas&&"mousewheel"===a.type&&b%120===0}var e,f,g=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],h="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],i=Array.prototype.slice;if(a.event.fixHooks)for(var j=g.length;j;)a.event.fixHooks[g[--j]]=a.event.mouseHooks;var k=a.event.special.mousewheel={version:"3.1.11",setup:function(){if(this.addEventListener)for(var c=h.length;c;)this.addEventListener(h[--c],b,!1);else this.onmousewheel=b;a.data(this,"mousewheel-line-height",k.getLineHeight(this)),a.data(this,"mousewheel-page-height",k.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var c=h.length;c;)this.removeEventListener(h[--c],b,!1);else this.onmousewheel=null;a.removeData(this,"mousewheel-line-height"),a.removeData(this,"mousewheel-page-height")},getLineHeight:function(b){var c=a(b)["offsetParent"in a.fn?"offsetParent":"parent"]();return c.length||(c=a("body")),parseInt(c.css("fontSize"),10)},getPageHeight:function(b){return a(b).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var activeSlideNo = 0; // keep track of the current slide nb | |
var lastSlideNo = 0; // number of slides | |
function slide(direction){ | |
if ($('.holder').is(':animated')) return; //do not animate it an animation is already in motion | |
if ( direction > 0 && activeSlideNo == 0 ) return; //do not animate backwards if at beginning | |
if ( direction < 0 && activeSlideNo == lastSlideNo) return; //do not animate forward if at the end | |
(direction > 0) ? slide_left(): slide_right(); | |
} | |
function slide_left(){ | |
activeSlideNo -= 1; //keep track of the current slide nb | |
$('.holder').stop().animate( //animate! | |
{'margin-left': "+=" + $('.slide').width()}, 1000); | |
$('.holder_demonstr').stop().animate( //demonstration animation | |
{'margin-left': "+=" + $('.slide').width()}, 1000); | |
} | |
function slide_right(){ | |
activeSlideNo += 1; //keep track of the current slide nb | |
$('.holder').stop().animate( //animate! | |
{'margin-left': "-=" + $('.slide').width()}, 1000); | |
$('.holder_demonstr').stop().animate( //demonstration animation | |
{'margin-left': "-=" + $('.slide').width()}, 1000); | |
} | |
$(document).ready(function() { | |
lastSlideNo = $('.holder').children().length - 1; | |
$('.shower').on('mousewheel', function(event) { | |
slide(event.deltaY); | |
}); | |
}); | |
//on resize, recalibrate margin to point to desired (current) slide | |
$(window).resize(function() { | |
$('.holder').css({ marginLeft : -1 * activeSlideNo * $('.slide').width()}); | |
$('.holder_demonstr').css({ marginLeft : -1 * activeSlideNo * $('.slide').width() -3}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.shower{ | |
float: left; | |
width: 10vw; /* change HERE desired height and width */ | |
height: 10vw; /* the rest will be scaled accordingly */ | |
overflow: hidden; | |
} | |
.holder { | |
width: 300%; /* change width HERE: width = 100% * nb_of_slides */ | |
height: 100%; | |
} | |
.slide { | |
float: left; | |
width: 33.33%; | |
height: 100%; | |
opacity: 0.4; | |
} | |
#slide-0{ background-color: purple; } | |
#slide-1{ background-color: teal; } | |
#slide-2{ background-color: red; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.shower_demonstr{ | |
float: left; | |
width: 10vw; | |
height: 10vw; | |
border: 4px solid black; | |
} | |
.holder_demonstr { | |
width: 300%; | |
height: 100%; | |
margin: -3px; | |
border: 3px dashed silver; | |
} | |
.slide_demonstr { | |
float: left; | |
width: 33.33%; | |
height: 100%; | |
opacity: 0.4; | |
} | |
.spacer_horizontal{ | |
float: left; | |
height: 10vw; | |
width: 40vw; | |
} | |
.spacer_vertical{ | |
float: left; | |
height: 15vh; | |
width: 99vw; | |
} | |
body{ background-color: gray; } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment