'clipTop' Example : clipTop « Javascript Properties « JavaScript Reference

'clipTop' Example

    
<html>
<head>
<style>
#myImage {position:absolute; 
      top:224px; 
      left:75px; 
      clip:rect(0,300,225,0)}
</style>
<script language="JavaScript">
    function function5() {
        document.all.myImage.style.clip = "rect(0,300,225,0)"
    } 
    function function3() {
        document.all.myImage.style.clip = "rect(50,300,225,0)";
    } 
</script></head>
<body bgcolor="#EEEEEE" bottommargin="100"> 
<img src="yourimage.gif" id="myImage">
<input type="button" value="Restore" onClick="function5();">
<input type="button" value="Clip top 50" onClick="function3(50);">
</body>
</html>

    
      
      








Related examples in the same category

1.'clipTop' Syntax and Note
2.'clipTop' Possible Values
3.'clipTop' is applied to