Layer 'srcFilter' Example : Layer : HTML : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
JavaScript DHTML Home »  HTML   » [  Layer  ]   
 



Layer 'srcFilter' Example

Please note that some example is only working under IE or Firefox.

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

    
      
      
Related examples in the same category
1.  Monitors divisions (or layers) on dynamic Web pages (DHTML)
2.  Hide and show layer
3.   Layer Background Colors (W3C)
4.  Setting Layer Backgrounds (W3C)
5.  The layer while rolling over the link.
6.  Accessing Layers with JavaScript
7.  'layer' and 'ilayer' Tag Properties
8.  Detecting Navigator and Internet Explorer
9.   Adjusting Layer clip Properties (W3C)
10.  Comparison of Layer and Clip Location Properties (W3C)
11.   Testing Nested Layer Coordinate Systems (W3C)
12.  Nested Layer Visibility Relationships (W3C)
13.  Relationships Among zIndex Values (W3C)
14.  Dragging a Layer (W3C)
15.  Resizing a Layer (W3C)
16.  Methods and Properties of the Layer Object
17.  Layer seek








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.