- http://www.dynamicdrive.com/forums/showthread.php?28936-float-right-inverting-the-order-of-the-items-container-top-margin-not-working
- http://www.electrictoolbox.com/css3-rounded-corner-input/
- http://www.red-team-design.com/style-an-input-button
- http://stackoverflow.com/questions/7582205/background-image-not-showing-up-in-span-tag
- http://stackoverflow.com/questions/11346568/stretching-a-tag-to-fill-parent-li-in-horizontal-list
- https://code.google.com/p/jquery-underline/source/browse/Instructions.wiki?repo=wiki
- http://stackoverflow.com/questions/2027657/overlapping-elements-in-css
I feel as though I've gotten much more comfortable with jQuery. For example, yesterday I wrote this function for animating the background color of elements in 5 minutes:
So an example of me using the code would be:function animateBG(selector, changeColor, startColor){
$(selector).hover(function(){
$(this).animate({ backgroundColor: changeColor }, 'fast');
});
$(selector).mouseleave(function(){
$(this).animate({ backgroundColor: startColor }, 'fast');
});
}
animateBG('#login_box a', '#c53939', '#b61e1e');
One thing I probably should have used more in the past but just remembered recently was google fonts: http://www.google.com/fonts/
With google fonts I no longer need to store the fonts on my server and can load it straight from theirs in my css. I'm not positive that it's faster but it should be according to my common sense.
So I'll edit this post with the website/design once it's complete. Pce for now.
No comments:
Post a Comment