|
internet.com
IT
Developer Internet News Small Business Personal Technology Search internet.com Advertise Corporate Info Newsletters Tech Jobs E-mail Offers
Developer Channel
FlashKit.com
JavaScript.com JavaScriptSource Developer Jobs ScriptSearch StreamingMediaWorld Web Developer's Journal Web Developer's Virtual Library WebDeveloper.com Webreference Web Hosts XMLfiles.com
|
SMIL
HTML+TIME Transitions in Internet Explorer 6by Tim Kennedy April 19, 2001
Earlier in my series of tutorials on HTML+TIME, I showed you how to build a simple slide show that will play in your Windows Internet Explorer 5.5 (or later) browser. One of the exciting things about watching Microsoft roll out Windows versions of IE is that they seem to be increasingly interested in putting more HTML+TIME capability in their browsers. And so it is with Internet Explorer 6. As I write this, the public preview of Internet Explorer is beginning to make the rounds. With it comes a new range of HTML+TIME features. One of those feature sets is transitions. Transitions in IE 6 Transitions can be applied to almost any element in a Web document. If you follow the rules, that includes almost all uses of text, images, and video. Our Slideshow Recap
<html xmlns:t="urn:schemas-microsoft-com:time">
<head><style>.time {behavior:url(#default#TIME2);}
</style>
<?import namespace="t"implementation="#default#time2">
<title>SMW HMTL+TIME Demo</title></head><body>
<t:seq repeatCount="indefinite"><t:par>
<img class="time"begin="0"dur="5"timeAction="display"src="first.jpg"/>
<div class="time"begin="0"dur="5"timeAction="display">
Morning Fog in Africa</div></t:par>
<t:par>
<img class="time"dur="5"timeAction="display"src="second.jpg"/>
<div class="time"dur="5"timeAction="display">
Sunset at an African Beach</div>
</t:par>
<t:par><img class="time"dur="5"timeAction="display"src="third.jpg"/>
<div class="time"dur="5"timeAction="display">
African Jungle</div>
</t:par>
</t:seq>
</body>
</html>
This is a good place to start. Our transitions markup can build from here.
The Latest WebDev Tips from DevX
Receive news via our XML/RSS feed |
|||
|