diff --git a/website/source/assets/javascripts/app/DotLockup.js b/website/source/assets/javascripts/app/DotLockup.js index 2615f2220e..8eae2ca580 100644 --- a/website/source/assets/javascripts/app/DotLockup.js +++ b/website/source/assets/javascripts/app/DotLockup.js @@ -40,7 +40,7 @@ DotLockup = Base.extend({ animateOff: function(){ var deferred = $.Deferred(); - this.updateEachKeyClass('full off', '', 1250, 150, deferred.resolve, true); + this.updateEachKeyClass('full off', '', 1000, 150, deferred.resolve, true); return deferred; }, @@ -51,7 +51,7 @@ DotLockup = Base.extend({ len = _this.$keys.length, presses = _this.randomNumbersIn(len), delay = 250, - interval = 1000; + interval = 600; for(var i=0; i < len; i++){ (function(index){ diff --git a/website/source/assets/stylesheets/_home.scss b/website/source/assets/stylesheets/_home.scss index 5d579f74d3..725bcdbc90 100755 --- a/website/source/assets/stylesheets/_home.scss +++ b/website/source/assets/stylesheets/_home.scss @@ -94,8 +94,8 @@ animation-name: press; -webkit-animation-name: press; - animation-duration: 1s; - -webkit-animation-duration: 1s; + animation-duration: 600ms; + -webkit-animation-duration: 600ms; animation-timing-function: ease; -webkit-animation-timing-function: ease;