This file contains hidden or 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 clicked = false, | |
i = -1, | |
y = $(".contentContainer").length, | |
y2 = y+2, | |
z = y-1; | |
$(".sliderHolder").css("width", $(window).width()); | |
$(".contentContainer").css("width", $(window).width()); | |
$(".homeSlider").css("width", $(window).width()*y2); | |
$('.contentContainer').eq(1).clone().appendTo('.homeSlider'); | |
$('.contentContainer').eq(y-1).clone().prependTo('.homeSlider'); |
This file contains hidden or 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
<script type="text/javascript"> | |
// XEO SCRIPT Skills Page | |
// Steve McCard | |
// (917) 753 8783 | |
var x = jQuery.browser; | |
$(document).ready(function(){ | |
if (x.safari){ //Checking for Safari Based |
This file contains hidden or 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
It can be seen here: http://xeo.tryptamine.tv/lookbook2/ | |
Here is the Code. Enjoy | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
// INITIATE XEO SCRIPT | |
// RETURN OF THE LOOKBOOK! | |
// The Main Image Array |
This file contains hidden or 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
$(document).ready(function () { | |
$('#mycarousel-next').click(function () { | |
if ($('ul.jcarousel-list-horizontal').css("left")) $(this).animate({ | |
"opacity": "0" | |
}); | |
}); | |
}); | |
This works, it's more or less just a debug to make the arrow disappear after I click the next button. |
This file contains hidden or 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
$(document).ready(function () { | |
$('#mycarousel-next').click(function () { | |
if ($('ul.jcarousel-list-horizontal').css("left")) $(this).animate({ | |
"opacity": "0" | |
}); | |
}); | |
}); | |
This works, it's more or less just a debug to make the arrow disappear after I click the next button. |