Source code for /src/SlideShow.html.txt

//======================================================================//
// Author: Mark Qian <markqian@hotmail.com>                             //
// WWW: http://www.coolshare.com                                        //
// Copyright (c) 2006, Mark Qian                                        //
//                                                                      //
// You must contact Mark Qian to get a permission of use                //
// in case you want to make any use of the codes except viewing it     //
// on Mark's site.                                                      //
//======================================================================//


<div style="position: relative; padding: 3px;">
		<div>
			<input type="button" value="pause" 
				dojoAttachPoint="startStopButton"
				dojoAttachEvent="onClick: togglePaused;">
		</div>
		<div style="position: relative; width: ${this.width}; height: ${this.height};"
			dojoAttachPoint="imagesContainer"
			dojoAttachEvent="onClick: togglePaused;">
			<img dojoAttachPoint="img1" class="slideShowImg" 
				style="z-index: 1; width: ${this.width}; height: ${this.height};"  />
			<img dojoAttachPoint="img2" class="slideShowImg" 
				style="z-index: 0; width: ${this.width}; height: ${this.height};" />
		</div>	
</div>