Attack animation : Animation « GUI Components « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » GUI Components » Animation 
Attack animation


<html>
<head>
<title>DynAPI Examples - DynLayer Attack!</title>
<script language="JavaScript" src="./dynapisrc/dynapi.js"></script>
<script language="Javascript">
  dynapi.library.setPath('./dynapisrc/');
  dynapi.library.add('dynapi.fx.CircleAnimation','circleanim.js',['Thread','dynapi.functions.Math']);

  dynapi.library.include('dynapi.library');
  dynapi.library.include('dynapi.api');
  dynapi.library.include('PathAnimation');
  dynapi.library.include('CircleAnimation');
  dynapi.library.include('TimerX');
  dynapi.library.include('MotionX');
</script>
<script language="Javascript">


var myTarget,w=0
dynapi.onLoad (function() {

  myTarget= new DynLayer(null,50,50,5,5,'red')
  myTarget2= new DynLayer(null,100,100,5,5,'blue')

  path = new PathAnimation(myTarget);
  path2 = new PathAnimation(myTarget2);
  // path 3 generated circle path starting at 180degrees about point (250,250)
  // note: circleanim is not required in order to use pathanim
  circle = new CircleAnimation();
  circle.setRadius(50);
  circle.setAngle(180);
  circle.setAngleIncrement(10);
  circlepath = circle.generatePath(250,150);
  path.add(circlepath,true)
  path.playAnimation(0)
  circlepath = circle.generatePath(150,150);
  path2.add(circlepath,true)
  path2.playAnimation(0)

  var img = dynapi.functions.getImage('./dynapiexamples/images/eicon3.gif');
  mySource =new DynLayer(img.getHTML(),100,100,32,32)

  //------- Events ------------------
  myListener = {};
  myListener.ontimer=function(e){
    var me=e.getSource();
    var x=Math.random()*400;y=Math.random()*200
    //if (x<=me.x) {me.dir=0}else{me.dir=2}
    me.slideTo(x,y)
    status="c"
  }
  myListener.onmove=function(e){
    var i,anim
    var me=e.getSource();
    var anim=path.pathPlaying
    var circlepath = circle.generatePath(me.x,me.y);

    for (i=0;i<anim.length;i++) {
      anim[i]=circlepath[i]
    }

    anim=path2.pathPlaying
    circlepath = circle.generatePath(me.x,me.y);
    x=Math.random()*50
    for (i=0;i<anim.length;i++) {
      anim[i]=circlepath[i]+x
    }
  }

  mySource.addEventListener(myListener)
  mySource.startTimer(1500)

  dynapi.document.addChild(myTarget)
  dynapi.document.addChild(myTarget2)
  dynapi.document.addChild(mySource)

})
</script>
</head>
<body bgcolor="#FFFFFF">
<script>
  dynapi.document.insertAllChildren();
</script>
</body>
</html>

           
       
dynapi.zip( 791 k)
Related examples in the same category
1. Circle Animation
2. Right to left animation
3. Flash animation in Javascript
4. Flash animation in JavaScript: Changing style Properties
5. Animation along Straight Line
6. Animation along a Circle
7. Dancing Text (IE)
8. Type Writer effect (IE)
9. Type Writer Effect 1.1 (IE)
10. JavaScript Ticker 1.2 (IE)
11. Animation: Lottery Number Picker and Statistics
12. Animation: wriggly
13. Animation: welcome message
14. Animation: trio
15. Auto lotto dip
16. Animation: snow
17. Animation: star
18. Animation: mouse doodle
19. Animation: fireworks
20. Animation: pretty
21. Animation: Random Movement
22. Lotto number draw
23. Following eyes
24. Animation: three eyes
25. Animation: eyes
26. Spot light
27. Big static eyes
28. Animation based on DIV with color flash
29. Framework for creating CSS-based animations
30. Animate dynamic element h1 tag
31. Popup window animation (fly across screen)
32. Animation on several images
33. Using the onFilterChange Event Handler
34. JavaScript Animation
35. Periodically Updating the Text Displayed by an HTML Element
36. Moving an Airplane Across a Web Page
37. Link Hint Scroller 2.0 (IE)
38. Snow animation
w__w___w__.__j_av__a_2_s_.c_o_m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.