Original Flavour: Changed animation type from jQuery to css-transition. Doesn't seem to make that much different.

Also, fixed a bug where I didn't remove the "transitionend" event handler which was causing all sorts of strange things (like zooming in on a tab when the search-box was used.
This commit is contained in:
aza@More-Better-Internet.local 2010-03-20 11:01:45 -07:00
parent fcb47be1af
commit 070d3b2780
2 changed files with 36 additions and 11 deletions

View File

@ -39,23 +39,25 @@ var Page = {
// ZOOM! // ZOOM!
var [w,h] = [$(this).width(), $(this).height()]; var [w,h] = [$(this).width(), $(this).height()];
var origPos = $(this).position(); var origPos = $(this).position();
var zIndex = $(this).css("zIndex");
var scale = window.innerWidth/w; var scale = window.innerWidth/w;
$(this).addClass("scale-animate").css({ $(this).addClass("scale-animate").css({
top: 0, left: 0, top: 0, left: 0,
width:w*scale, height:h*scale width:w*scale, height:h*scale,
zIndex: 999999
}).bind("transitionend", function(e){ }).bind("transitionend", function(e){
// We will get one of this events for every property CSS-animated... // We will get one of this events for every property CSS-animated...
// I choose one randomly (width) and only do things for that. // I choose one randomly (width) and only do things for that.
if( e.originalEvent.propertyName != "width" ) return; if( e.originalEvent.propertyName != "width" ) return;
// Switch tabs, and the re-size and re-position the animated // Switch tabs, and the re-size and re-position the animated
// tab image. // tab image.
$(this).find("canvas").data("link").tab.focus(); $(this).find("canvas").data("link").tab.focus();
$(this) $(this)
.removeClass("scale-animate") .removeClass("scale-animate")
.css({top: origPos.top, left: origPos.left, width:w, height:h}); .css({top: origPos.top, left: origPos.left, width:w, height:h, zIndex:zIndex})
Navbar.show(); .unbind("transitionend");
Navbar.show();
}) })
// END ZOOM // END ZOOM
@ -101,17 +103,34 @@ var Page = {
// its mirror for the zoom out. // its mirror for the zoom out.
var $tab = $(lastTab.mirror.el); var $tab = $(lastTab.mirror.el);
var [w,h, pos] = [$tab.width(), $tab.height(), $tab.position()]; var [w,h, pos, zIndex] = [$tab.width(), $tab.height(), $tab.position(), $tab.css("zIndex")];
$tab.css({ $tab.css({
top: 0, left: 0, top: 0, left: 0,
width: window.innerWidth, width: window.innerWidth,
height: h * (window.innerWidth/w), height: h * (window.innerWidth/w),
zIndex: 999999, zIndex: 999999,
}) });
.animate({
top: pos.top, left: pos.left, // Not entirely sure why we need the setTimeout here?
width: w, height: h // Without it, it seems to not do the css-transition at all
},250); // and with it, it works just fine.
setTimeout(function(){
$tab.addClass("scale-down-animate")
$tab.css({
top: pos.top, left: pos.left,
width: w, height: h
})
.bind("transitionend", function(e){
// We will get one of this events for every property CSS-animated...
// I choose one randomly (width) and only do things for that.
if( e.originalEvent.propertyName != "width" ) return;
$tab
.css("zIndex", zIndex)
.removeClass("scale-down-animate")
.unbind("transitionend");
});
}, 0);
} }
lastTab = this; lastTab = this;
}); });

View File

@ -120,6 +120,12 @@
-moz-transition-duration: .17s; -moz-transition-duration: .17s;
-moz-transition-timing-function: cubic-bezier(1.0, 0.0, 1.0, 1.0); -moz-transition-timing-function: cubic-bezier(1.0, 0.0, 1.0, 1.0);
} }
.scale-down-animate{
-moz-transition-property: height, width, left, top;
-moz-transition-duration: .26s;
-moz-transition-timing-function: ease-out;
}
/* Resizable /* Resizable