createjs

CreateJS is a suite of modular libraries and tools which work together to enable rich interactive content on open web technologies via HTML5. These libraries are designed to work completely independently, or mixed and matched to suit your needs. The CreateJS Suite is comprised of: EaselJS, TweenJS, SoundJS, PreloadJS, and Zoë.
Read more...calculate div position
are closed

After trying out loads of ways to find out the position of div in web page I found this be the best code function getPosition(obj){ var topValue= 0,leftValue= 0; while(obj){ leftValue+= obj.offsetLeft; topValue+= obj.offsetTop; obj= obj.offsetParent; } finalvalue = {‘left’: leftValue, ‘top’ : topValue}; return finalvalue; } In order to use this just use the following var curPos = getPosition(document.getElementById(‘divInQuestion’)); curPos.left is the postion left and curPos.top is the top…
Read more...very nice article on color theory
are closed

Color in design is very subjective. What evokes one reaction in one person may evoke a very different reaction in somone else. Sometimes this is due to personal preference, and other times due to cultural background. Color theory is a science in itself. Studying how colors affect different people, either individually or as a group, is something some people build their careers on. And there’s a lot to it. Something…
Read more...CSS Differences in Internet Explorer 6, 7 and 8
are closed

One of the most bizarre statistical facts in relation to browser use has to be the virtual widespread numbers that currently exist in the use of Internet Explorer versions 6, 7 and 8. As of this writing, Internet Explorer holds about a 65% market share combined across all their currently used browsers. In the web development community, this number is much lower, showing about a 40% share. The interesting part…
Read more...Date Display Technique with Sprites
are closed

http://css-tricks.com/date-display-with-sprites/
Read more...
are closed