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

Home
JavaScript Reference
1.Event Handlers Reference
2.Javascript Collections
3.Javascript Methods
4.Javascript Objects
5.Javascript Properties
JavaScript Reference » Javascript Properties » srcFilter 
'srcFilter' Example


<!-- 
Example revised from 

The Web Programmer's Desk Reference
by Lazaro Issi Cohen and Joseph Issi Cohen 

ISBN: 1593270119
Publisher: No Starch Press 2004
-->     
<html>
<head>
<script language="JavaScript">
function function1() {
Layer1.filters[0].Apply();
    if (Layer1.style.visibility == "visible") {
        Layer1.style.visibility = "hidden";
        Layer1.filters.revealTrans.transition = 2;
    else {
        Layer1.style.visibility = "visible";
        Layer1.filters[0].revealTrans.transition = 3;
    }
    Layer1.filters[0].Play();
    var m = window.event.srcFilter;
    alert(m)
}
</script></head>
<body bottommargin="150">
<div id="Layer1" 
     style="position:absolute; 
            visibility:visible; 
            Filter:revealTrans(duration=2, transition=3); 
            left:92px; 
            top:257px; 
            width:100px; 
            background-color:#FFFF99;"
    <img src="yourimage.gif" width="99" height="75">
</div>
<input type="button" id="myButton" onClick="function1();" value="Play Transition"
</body>
</html>

    
      
      
Related examples in the same category
1.'srcFilter' Syntax and Note
2.'srcFilter' is applied to
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.