<html>
<head>
<meta name="description" content="Image Carousel Exercise" />
<script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
</head>
<body>
<div class="output"></div>
</body>
</html>
/*jslint nomen: true */
/*global Raphael, window */
(function () {
"use strict";
var paper = new Raphael(0, 0, 500, 500),
url_prefix = "http://interstate.from.so/carousel_images/",
url_suffix = ".jpg",
images = ["fish", "leaf", "tulips", "winter", "wonderland"];
var large_image_width = 500,
selected_index = 0,
large_image = paper.image(url_prefix + images[selected_index] + url_suffix,
0,
0,
large_image_width,
2 * large_image_width / 3),
thumbnails,
selected_thumbnail,
redIndicator = paper.rect(0,0,0,0),
start_time;
redIndicator.attr("fill",'red');
redIndicator.attr("stroke-width",0);
/* function shrink_red_rect() {
var redIndicator = paper.rect();
}*/
function set_selected_index(index) {
selected_index = index;
large_image.attr("src", url_prefix + images[selected_index] + url_suffix);
selected_thumbnail.attr("opacity", 0.4);
selected_thumbnail = thumbnails[selected_index];
selected_thumbnail.attr("opacity", 1.0);
}
thumbnails = images.map(function (src, i) {
var thumbnail_width = 95;
var thumbnail = paper.image(url_prefix + src + url_suffix,
2 + (thumbnail_width + 5) * i,
large_image.attr("height") + 5,
thumbnail_width, thumbnail_width * 2 / 3);
if(i === 0) {
thumbnail.attr("opacity", 1.0);
} else {
thumbnail.attr("opacity", 0.4);
}
thumbnail.click(function () {
set_selected_index(i);
reset_timer();
});
return thumbnail;
});
selected_thumbnail = thumbnails[selected_index];
function get_time_ms() {
return (new Date()).getTime();
}
start_time = get_time_ms();
function reset_timer() {
start_time = get_time_ms();
}
var diff;
window.setInterval(function () {
diff = 5000 - get_time_ms() + start_time;
if (diff <= 0) {
set_selected_index((selected_index + 1) % 5);
reset_timer();
}
redIndicator.attr("x", selected_thumbnail.attr("x"));
redIndicator.attr("y", selected_thumbnail.attr("y") + selected_thumbnail.attr("height"));
redIndicator.attr("width", diff*95/5000);
redIndicator.attr("height", 10);
}, 50);
}());
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |