Presentation is loading. Please wait.

Presentation is loading. Please wait.

Creating Animations, Working with Graphics, and Accessing Data Lesson 9.

Similar presentations


Presentation on theme: "Creating Animations, Working with Graphics, and Accessing Data Lesson 9."— Presentation transcript:

1 Creating Animations, Working with Graphics, and Accessing Data Lesson 9

2 Exam Objective Matrix Skills/ConceptsMTA Exam Objectives Coding Animations by Using JavaScript Code animations by using JavaScript. (4.3) Working with Images, Shapes, and Other Graphics Code animations by using JavaScript. (4.3) Sending and Receiving DataAccess data access by using JavaScript. (4.4) Loading and Saving FilesAccess data access by using JavaScript. (4.4) Using JavaScript to Validate User Form Input Access data access by using JavaScript. (4.4) Understanding and Using Cookies Access data access by using JavaScript. (4.4) Understanding and Using LocalStorage Access data access by using JavaScript. (4.4)

3 Animation Animation is the display of a sequence of static images at a fast enough speed to create the illusion of movement. Regarding the user interface, animation has to do with changing a display to make it dynamic—not just a one-time change but a seamless one. JavaScript can produce spectacular animation effects.

4 Recursion Recursion is a programming technique in which a function calls itself. Recursion is a key part of animation. The most effective way to introduce a “timing element” into JavaScript is to use setTimeout recursively. –Have it invoke another execution of the same function from which the setTimeout() was called.

5 A Simple Animation Example

6 A Simple Animation Example (Continued)

7

8 createElement Method You can use the JavaScript createElement method to display an image when a button is clicked or some other event occurs.

9 Canvas Element To draw a canvas object, use: –getElementById() function to find the canvas element –canvas.getContext to create the canvas object Then use a variety of methods to draw shapes, include images, and so on.

10 Canvas Example: Analog Clock

11 Canvas Example: Analog Clock (Continued)

12 Sending and Receiving Data One of the most essential techniques for data transfer involves the XMLHttpRequest API. –Sometimes abbreviated as XHR XMLHttpRequest enables you to use JavaScript to pass data in the form of text strings between a client and a server.

13 XMLHttpRequest General syntax:

14 XMLHttpRequest The XMLHttpRequest object creates a call to the server. The open method specifies the HTTP method for contacting the server and provides the server’s Web address. The callback function gets a response from the server. xhr.send(data) sends the data.

15 Accessing Data Example

16

17 Parsing Parsing is a term used to describe analysis of complex information into constituent parts. Use parsing for extracting information from a data stream of stock quotes and similar tasks.

18 Parsing Example

19

20 JSON You can also use JSON.parse and JSON.stringify APIs to exchange JavaScript objects with a server.

21 Loading and Saving Files JavaScript can access files on a local computer and, using HTML5, validate the file type before loading, which greatly reduces errors.

22 Access a Local File Example

23 Access a Local File Example (Continued)

24 Application accepts image files but not other formats

25 Access a Local File Example (Continued) Application accepts image files but not other formats

26 AppCache AppCache saves a copy of Web site files locally, in a structured form. AppCache is not the same as a browser’s cache. Whereas a browser’s cache saves all Web pages visited, AppCache saves only the files listed in the cache manifest.

27 AppCache Example

28 Data Types A data type is JavaScript’s interpretation of the kind of data a program can work with. Data types include: – string –Number –Array –Boolean –Null –Object –undefined

29 User Input Form Validation As end users enter data in a form, JavaScript can instantly validate entries and suggest alternatives.

30 Client-side Validation Example

31 Client-side Validation Example (Continued)

32 Cookies Cookies are small text files that Web sites save to a computer’s hard disk that contain information about the user and his or her browsing preferences. The content of cookies change as a user revisits a site and selects different items or changes preferences. In JavaScript, a cookie is a variable. JavaScript can create and retrieve cookies.

33 Use Cookies Example

34 Local Storage HTML5’s Local Storage feature has better security and makes programming easier than with cookies.

35 Recap Animation Recursion createElement method Canvas Sending and receiving data XMLHttpRequest API Accessing a local file AppCache Data types User input form validation/client-side validation Cookies Local Storage


Download ppt "Creating Animations, Working with Graphics, and Accessing Data Lesson 9."

Similar presentations


Ads by Google