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
<select> | |
<option value="AB">Alberta</option> | |
<option value="BC">British Columbia</option> | |
<option value="MB">Manitoba</option> | |
<option value="NB">New Brunswick</option> | |
<option value="NL">Newfoundland and Labrador</option> | |
<option value="NS">Nova Scotia</option> | |
<option value="ON">Ontario</option> | |
<option value="PE">Prince Edward Island</option> | |
<option value="QC">Quebec</option> |
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
$(function() { | |
var Carousel = function(carouselElement) { | |
var self = this; | |
this.el = $(document.getElementById(carouselElement)); | |
this.pictures = ['128x128/128 (1).png', '128x128/128 (2).png', '128x128/128 (3).png', '128x128/128 (4).png', '128x128/128 (5).png', '128x128/128 (6).png', '128x128/128 (7).png', '128x128/128 (8).png', '128x128/128 (9).png', '128x128/128 (10).png', '128x128/128 (11).png', '128x128/128 (12).png']; | |
this.items = this.pictures.length; | |
this.angles = [this.items]; | |
this.imageList = []; | |
this.anglePerImage = ((Math.PI * 2) / this.items); |