summaryrefslogtreecommitdiff
path: root/web-ui/Interstitial Design/Interstitial.js
diff options
context:
space:
mode:
authorLourenço S <lous@thoughtworks.com>2015-01-21 11:45:30 -0200
committerLourenço S <lous@thoughtworks.com>2015-01-21 11:45:30 -0200
commit781c9b33bb23d94398078d520f06a6def823a754 (patch)
treebeda199e40e7ba3b15369f717b01bde804f2e4cf /web-ui/Interstitial Design/Interstitial.js
parente6d26f2ee8a453c1007c7018ec02b7506148c817 (diff)
Sample files for loading/interstitial page
Adding a fully functional example of the interstitial animation we want to use for loading
Diffstat (limited to 'web-ui/Interstitial Design/Interstitial.js')
-rw-r--r--web-ui/Interstitial Design/Interstitial.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/web-ui/Interstitial Design/Interstitial.js b/web-ui/Interstitial Design/Interstitial.js
new file mode 100644
index 00000000..0ae71ec5
--- /dev/null
+++ b/web-ui/Interstitial Design/Interstitial.js
@@ -0,0 +1,38 @@
+if ($('#hive').length) {
+ var hive = new Snap('#hive');
+ var img_width = $('#hive').width();
+ var left_pos = img_width * .5;
+
+ var pixelated = hive.path("M12.4,20.3v31.8l28,15.8l28-15.8V20.3l-28-15.8L12.4,20.3z M39.2,56.4l-16.3-9V27.9l16.3,9.3L39.2,56.4z M57.7,47.4l-16.1,9l0-19.2l16.1-9.4V47.4z M57.7,25.2L40.4,35.5L22.9,25.2l17.5-9.4L57.7,25.2z").transform("translate(319, 50)").attr("fill", "#908e8e");
+ var all = hive.group().transform("matrix(2, 0, 0, 2, "+(left_pos - 950)+", -40)");
+
+ var height = 50;
+ var width = 58;
+
+ var rows = 8;
+ var cols = 15;
+ for(var j = 0; j < rows; j++) {
+ for (var i = 0; i < cols; i++) {
+ x = i * width + (j%2*width/2);
+ y = j * height;
+ all.add(pixelated.clone().transform("translate("+x+","+y+")"));
+ }
+ }
+
+ all.add(pixelated);
+
+ function brightenLogo() {
+ var glowPosition = Math.floor(Math.random()*rows*cols);
+
+ all[glowPosition].animate({fill: "#FFF"}, 1000, function() {
+ darkenLogo(all[glowPosition]);
+ });
+ }
+
+ function darkenLogo(el) {
+ el.animate({fill: "#908e8e"}, 1000, brightenLogo);
+ }
+
+ brightenLogo();
+
+}