This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
904
So...I just switched my project to git and so far its been nice(Purchased a 12$ plan over github.com). I added TOX-G's git repository as a submodule to my repository and it actually works well! Branching is surely a lot more sensible than SVN, that and its DCVS is nice for teams. It surely is better than SVN in every way, I'm using Tower for Mac as a client.
905
Off-topic / Re: Happy 2011
« on January 1st, 2011, 02:10 PM »
6 hours and I'll enter into the next dimension....I mean Jan 2nd.
Happy new year!
Happy new year!
906
Off-topic / Re: Do animations help?
« on December 31st, 2010, 06:43 PM »
You got a point, its not my fix anyway I borrowed it from somewhere and changed it a bit to use the default fadeIn instead of a customFadeIn.
907
Off-topic / Re: Steams holiday sales has begun!
« on December 31st, 2010, 01:14 PM »
Lol, so far I've bought about 30 games(Gifted 3 to my cousins) and we got the sale till Sunday, yay!
908
Off-topic / Re: Lightbox
« on December 31st, 2010, 11:50 AM »Not a big fan of that one... Why not Colorbox, then?
909
Off-topic / Re: Do animations help?
« on December 31st, 2010, 10:44 AM »
Oh I just realised the bug you're talking about, I got its fix in my code(Don't know if it works though :P)
Code: [Select]
$.fn._fadeIn = $.fn.fadeIn;
$.fn.fadeIn = function(speed, easing, callback)
{
$(this)._fadeIn(speed, easing, function()
{
if ($.browser.msie)
$(this).get(0).style.removeAttribute('filter');
if (callback != undefined)
callback.apply(this);
});
};910
Off-topic / Re: Do animations help?
« on December 31st, 2010, 10:28 AM »
I cannot see the latest fader.js fix for the obvious reasons ^_^, or any of the animations you mentioned as a matter of fact.
911
Off-topic / Re: I spammed you!
« on December 31st, 2010, 10:17 AM »
And this, my friend, is mine 200th post!
912
Off-topic / Re: Lightbox
« on December 31st, 2010, 10:16 AM »
I ended up ditching highslide in favor of fancybox(Again)....:P
913
Off-topic / Re: Do animations help?
« on December 31st, 2010, 09:58 AM »
You don't even need jQuery UI for other easing effects, what jQ UI does is that it incorporates the jQuery easing plugin(http://gsgd.co.uk/sandbox/jquery/easing/) by default, but in reality easing support is a default feature of jQuery(By default it only has easeInLinear AFAIK) and that plugin adds more easing options.
914
Off-topic / Re: Do animations help?
« on December 31st, 2010, 09:53 AM »
You got a point, I also learned the sliding animations are useless on a large object(height wise, they get choppy) when compared to fades. That and jQuery UI effects library is more useless than anything(The core is 3KB gzipped :P, Apart from explode animation which is ok... but doesn't really have a good use).
915
Off-topic / Do animations help?
« on December 31st, 2010, 07:42 AM »
This is something I've been debating with myself. I've been adding subtle animations in my project lately(For example being, as the user submits the form, the form slides up and the confirmation screen slides down, or if a user changes an option which requires an alternative field to pop up then the current field fades out and the next field fades in), ofcourse this is for eye candy and offers no usability, but it looks good. Do you think it makes a difference?