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

MTA animations graphics_accessing data

Embed Size (px)

DESCRIPTION

Microsoft Examination for HTML 5

Citation preview

Page 1: MTA animations graphics_accessing data

Creating Animations, Working with Graphics, and Accessing Data

Lesson 9

Page 2: MTA animations graphics_accessing data

Exam Objective Matrix

Skills/Concepts MTA 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 Data

Access data access by using JavaScript. (4.4)

Loading and Saving Files Access 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)

2

Page 3: MTA animations graphics_accessing data

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.

3

Page 4: MTA animations graphics_accessing data

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. 4

Page 5: MTA animations graphics_accessing data

A Simple Animation Example

5

Page 6: MTA animations graphics_accessing data

A Simple Animation Example (Continued)

6

Page 7: MTA animations graphics_accessing data

A Simple Animation Example (Continued)

7

Page 8: MTA animations graphics_accessing data

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

8

Page 9: MTA animations graphics_accessing data

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.

9

Page 10: MTA animations graphics_accessing data

Canvas Example: Analog Clock

10

Page 11: MTA animations graphics_accessing data

Canvas Example: Analog Clock (Continued)

11

Page 12: MTA animations graphics_accessing data

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.

12

Page 13: MTA animations graphics_accessing data

XMLHttpRequest

• General syntax:

13

Page 14: MTA animations graphics_accessing data

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.

14

Page 15: MTA animations graphics_accessing data

Accessing Data Example

15

Page 16: MTA animations graphics_accessing data

Accessing Data Example

16

Page 17: MTA animations graphics_accessing data

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.

17

Page 18: MTA animations graphics_accessing data

Parsing Example

18

Page 19: MTA animations graphics_accessing data

Parsing Example

19

Page 20: MTA animations graphics_accessing data

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

20

Page 21: MTA animations graphics_accessing data

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.

21

Page 22: MTA animations graphics_accessing data

Access a Local File Example

22

Page 23: MTA animations graphics_accessing data

Access a Local File Example (Continued)

23

Page 24: MTA animations graphics_accessing data

Access a Local File Example (Continued)• Application accepts image files but not

other formats

24

Page 25: MTA animations graphics_accessing data

Access a Local File Example (Continued)• Application accepts image files but not

other formats

25

Page 26: MTA animations graphics_accessing data

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.

26

Page 27: MTA animations graphics_accessing data

AppCache Example

27

Page 28: MTA animations graphics_accessing data

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

28

Page 29: MTA animations graphics_accessing data

User Input Form Validation• As end users enter data in a form,

JavaScript can instantly validate entries and suggest alternatives.

29

Page 30: MTA animations graphics_accessing data

Client-side Validation Example

30

Page 31: MTA animations graphics_accessing data

Client-side Validation Example (Continued)

31

Page 32: MTA animations graphics_accessing data

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.

32

Page 33: MTA animations graphics_accessing data

Use Cookies Example

33

Page 34: MTA animations graphics_accessing data

Local Storage• HTML5’s Local Storage feature has

better security and makes programming easier than with cookies.

34

Page 35: MTA animations graphics_accessing data

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

35