-
-
Save smitfire/6454377 to your computer and use it in GitHub Desktop.
Image Carousel
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
// Shorthand for $(document).ready(); | |
$(function(){ | |
// Your code goes here... | |
var original_pos = $('.container').css('width'); | |
var original_pos2 = Math.abs(parseInt(original_pos)); | |
$('a#next_frame').on('click', function(event){ | |
var pos = $('ul.frames li').css('left'); | |
var pos2 = Math.abs(parseInt(pos)); | |
console.log(pos2); | |
console.log(original_pos2); | |
if(pos2 > original_pos2*1.9){ | |
$('ul.frames li').css('left', '0px'); | |
// $('ul.frames li').animate({left: '-=33.333333%'},"fast"); | |
} | |
else{ | |
$('ul.frames li').animate({left: "-=33.333333%"},"fast"); | |
}; | |
}); | |
$('a#previous_frame').on('click', function(event){ | |
var pos = $('ul.frames li').css('left'); | |
var pos2 = Math.abs(parseInt(pos)); | |
console.log(pos2); | |
console.log(original_pos2); | |
if(pos2 > original_pos2*1.9){ | |
$('ul.frames li').css('rigth', '0px'); | |
// $('ul.frames li').animate({left: '-=33.333333%'},"fast"); | |
} | |
else{ | |
$('ul.frames li').animate({right: "-=33.333333%"},"fast"); | |
}; | |
}); | |
}); | |
// [[1,2],[2,3],[3,1]] |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="main.css"> | |
<title>Image Carousel</title> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="carousel_controls"> | |
<a href="#" id="previous_frame"><</a> | |
<a href="#" id="next_frame">></a> | |
</div> | |
<div class="carousel"> | |
<ul class="frames"> | |
<li> | |
<h2>Zip</h2> | |
<img src="http://f.cl.ly/items/3e332b2e0B3d311a1U1X/wargames.jpg" /> | |
</li> | |
<li> | |
<h2>Zap</h2> | |
<img src="http://f.cl.ly/items/2h0Q3P0t0B3Q0N370u43/businessdude.jpg" /> | |
</li> | |
<li> | |
<h2>Zop</h2> | |
<img src="http://f.cl.ly/items/3i2V2V0D3n293d0y2y0U/tron.jpg" /> | |
</li> | |
<!-- <li> | |
<h2>Zop</h2> | |
<img src="http://f.cl.ly/items/3i2V2V0D3n293d0y2y0U/tron.jpg" /> | |
</li> --> | |
</ul> | |
</div> | |
</div> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<script src="carousel.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
/* | |
* Attribution: http://csswizardry.com/2011/10/fully-fluid-responsive-css-carousel/ | |
* | |
* DON'T VISIT THE ABOVE SITE FOR ANSWERS UNLESS YOU'RE | |
* COMPLETELY STUMPED | |
* | |
* ...also, it will not help you solve the JavaScript :) | |
*/ | |
.container { | |
width: 360px; | |
height: 228px; | |
margin: 0 auto; | |
} | |
.carousel{ | |
overflow:hidden; | |
width:100%; | |
} | |
.frames{ | |
list-style:none; | |
/* position: What value should position have?; */ | |
width:300%; | |
overflow:hidden; | |
padding:0; | |
margin:0; | |
} | |
.frames > li{ | |
/* position: What value should position have?; */ | |
position: relative; | |
left:0; | |
right:0; | |
float:left; | |
background:url("http://f.cl.ly/items/3e332b2e0B3d311a1U1X/wargames.jpg") no-repeat bottom; | |
width:33.33333%; /* 100 / number of frames */ | |
} | |
.carousel img{ | |
display:block; | |
width:100%; | |
max-width:100%; | |
} | |
.carousel h2{ | |
font-size:1em; | |
padding:0.5em; | |
width: 50px; | |
position:relative; | |
top:220px; | |
left:10px; | |
text-align:left; | |
margin: 0; | |
color:#fff; | |
background-color:rgba(99,0,0,0.75); | |
} | |
.carousel_controls a { | |
font-family: monospace; | |
text-decoration: none; | |
position: absolute; | |
margin-top: 99px; | |
width: 30px; | |
line-height: 30px; | |
background-color: #eee; | |
border: 1px solid #ddd; | |
border-radius: 30px; | |
text-align: center; | |
font-size: 22px; | |
font-weight: bold; | |
} | |
a#previous_frame { | |
margin-left: -50px; | |
} | |
a#next_frame { | |
margin-left: 380px; | |
/*position: relative;*/ | |
/*top:400px;*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment