With MooTools it is easy to define often used actions as custom events for elements : Action « Mootools « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » Mootools » Action 
With MooTools it is easy to define often used actions as custom events for elements
 

<!--
MooTools is released under the Open Source MIT license, 
which gives you the possibility to use it and modify 
it in every circumstance. 
-->

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <style rel="stylesheet" type="text/css">
div.floated {
  width: 400px;
  float: left;
  margin-left: 1em;
}

input#myElement, div#myScrollElement {
  border: 1px solid black;
  background-color: #f9f9f9;
  float: left;
  margin: 5px;
  padding: 3px;
  width: 134px;
}
div#myDivElement {
  clear: left;
  width: 150px;
}

div#myScrollElement {
  width: 200px;
  height: 200px;
  overflow: auto;
  float: left;
  background-color: #e8a3a3;
}
div#myScrollElement div {
  height: 500px;
}

div#myOtherDivElement {
  margin-top: 10px;
  font-weight: bold;
  float: left;
}  
  </style>
  <script type="text/javascript" src="mootools.js"></script>
  <script type="text/javascript">
// We define a custom event called "keyenter" which is based on the keyup event
Element.Events.keyenter = {
  base: 'keyup',
  condition: function(e){
    // We can basically put any logic here.
    // In this example we return true, when the pressed key is the
    // Enter-Button so the keyenter event gets fired.
    return e.key=='enter';
  }
};

window.addEvent('domready', function(){
  // First Example
  
  // Here we add the custom event to the input-element
  $('myElement').addEvent('keyenter', function(e){
    // We can do everything here: submitting a form, sending an AJAX-Request and so on
    // because it only fires when the user presses the Enter-Button
    e.stop();

    // But instead we only change the text of an element.
    $('myDivElement').set('text', 'You pressed enter').highlight()
  });
  
  
  // Second Example
  var el = $('myScrollElement'),
    color = new Color(el.getStyle('background-color')).hsb;
  
  el.addEvent('mousewheel', function(e){
    e.stop()// prevent the mousewheel from scrolling the page.
    
    // Again we just set the text of an element and highlight it
    $('myOtherDivElement').set('text', 'Wheel ' + (e.wheel < 'down' : 'up')).highlight();
    
    // But we add some nice logic to it to change the background-color
    var hue = color[0];
    if (e.wheel < 0){
      hue -= 5;
      if(hue < 0hue = 360;
    else {
      hue += 5;
      if (hue > 360hue = 0;
    }
    
    color[0= hue;
    
    this.setStyle('background-color', color.hsbToRgb());
  });
});  
  </script>
  <title>Slider Demo</title>
</head>
<body>
  <h1>Custom Events</h1>
  <h2>Introduction</h2>
  <p>
    With MooTools it is easy to define often used actions as custom events for elements.
    This is especially useful for input-elements. This demo shows you how to define
    a custom event, that only fires when you press the Enter-Button inside the given element.
  </p>
  <input type="text" id="myElement" name="myElement" value="Press enter here" />
  <div class="help floated">
    <strong>Why?</strong> Custom events are really useful when the standard
    events are just not enough. See the Mouseenter-Demo for a more advanced
    example.
  </div>
  <div id="myDivElement"></div>
  <h2>Mousewheel-Event</h2>
  <p>
    The mousewheel event is a custom MooTools-Event, which allows you to use the
    scrollwheel as an event, because every browser handles it differently. Try to
    use your mousewheel over the element below.
  </p>
  <div id="myScrollElement"><div></div></div>
  <div id="myOtherDivElement"></div>
</body>
</html>



   
     
  
Related examples in the same category
1. Add multiple Events to an Element, create custom Events and fire an Event
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.