JavaScript UI programming, Server side development, news and tools.
Browse by Tags
All Tags »
ui development (
RSS)
-
|
In my workspace I've done some research on how to make effects with graphical transformations. When I Googled about it, I only found that the new Safari supports using CSS transformations . I didn't find that IE has supported these things from earlier versions (5.5) -- though with another name: Matrix filters. So as of now, I have 2 ways to make effects with graphical transformations: The Safari way : using the 'transform' property of CSS (extensions to the spec and proposal too)...
|
-
|
What is ThickBox? ThickBox is inner window, like Modal Dialog just inside the web page itself and not part of the browser objects. There is events handling only into the inner window, any object but the inner window, cannot listen to events. In order to create ThickBox we will create 2 elements: Screen element – an element which block any action to go into the page's objects, won't let them focus. Window element – an element which contains the content of the box, it is the only object (and...
|
-
|
Event Delegation is a technique that get a lot attention lately in blogs and other resources that I read, so I decide to write about it too. Event Delegation is a technique to attach globally events to each element that match the condition (for example: CSS/XPath selector). Every time that new element which correspond the condition will appended into the document, it will have the event automatically. The technique works with the bubbling ability of the DOM Events model to capture the event. The...
|