DHTML
Dynamic HTML (DHTML) is a set of innovative features originally introduced in Microsoft Internet Explorer 4.0. By enabling authors to dynamically change the rendering and content of a Web page as the user interacts with it, DHTML enables authors to create visually compelling Web sites without the overhead of server-side programs or complicated sets of controls to achieve special effects.
With DHTML, you can easily add effects to your pages that previously were difficult to achieve. For example, you can:
* Hide content until a given time elapses or the user interacts with the page.
* Animate text and images in your document, independently moving each element from any starting point to any ending point, following a predetermined path or one chosen by the user.
* Embed a ticker that automatically refreshes its content with the latest news, stock quotes, or other data.
* Use a form to capture user input, and then instantly process and respond to that data.
http://msdn2.microsoft.com/en-us/library/ms533044.aspx
<html>
<head>
<title>Dynamic Styles</title>
<script language=”JavaScript”>
function doChanges(e) {
e.style.color = “green”;
e.style.fontSize = “20px”;
}
</script>
</head>
<body>
<h3 onmouseover=”doChanges(this)” style=”color:black;font-size:18px”>Welcome to Dynamic HTML!</h3>
<p>You can do the most amazing things with the least bit of effort.</p>
</body>
</html>
| Share this post : |










