I'm passionate about drawing, writing, coding, traveling, and meaningful conversations. Creativity drives me—whether crafting ideas, exploring new places, or building digital experiences. I see the world with curiosity, imagination, and a desire to create something truly meaningful.
Tuesday, November 29, 2011
Friday, November 25, 2011
Tuesday, November 22, 2011
Friday, November 18, 2011
Thursday, November 17, 2011
Wednesday, November 16, 2011
FIXING IE7 Z-INDEX ISSUES WITH JQUERY
For some reason, Internet Explorer 7 does some pretty funky things, and has several known bugs with it’s rendering engine that drive web developers like me crazy. While most of the known bugs occur in relatively obscure situations and go largely unnoticed, there are a few that really stick out and cause web developers to waste many hours trying to fix them. The way IE7 renders z-index stacking orders is one of them.
One way to fix many of the issues with IE7 is to dynamically reverse the default z-index stacking order of the elements on your page. This will ensure the elements higher in your HTML source will also have a higher z-index order on your page, solving most of the IE stacking issues. If you’re using jQuery (the best Javascript library there is), here’s the quick fix:
1 2 3 4 5 6 7 | $(function() { var zIndexNumber = 1000; $('div').each(function() { $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); }); |
Monday, November 14, 2011
Friday, November 11, 2011
Wednesday, November 09, 2011
Tuesday, November 08, 2011
Monday, November 07, 2011
Subscribe to:
Posts (Atom)
DzineGeek: 50+ Excellent Posters about Design
DzineGeek: 50+ Excellent Posters about Design : An excellent poster on our wall would certainly catch our attention and even inspire us. For...
-
3D Flipping Circle with CSS3 & jQuery The idea is based on the sweet paper effect found in the video of the Google Developer Stories. ...
-
Tilt: a WebGL-based 3D visualization of a Webpage