70-480 - programming in html5 with javascript and css3

49

Upload: shamar4134

Post on 16-Jul-2015

206 views

Category:

Education


4 download

TRANSCRIPT

Page 1: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 2: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 3: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 4: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 5: 70-480 - Programming in HTML5 with JavaScript and CSS3

Beautiful Sites

and Apps

Easy-to-build,

Touch-First

Interactivity

Engaging Page

Layouts

Better

Client/Server

Data Transfer

Powerful Local

Data and Offline

Page 6: 70-480 - Programming in HTML5 with JavaScript and CSS3

Windows Core OS Services

JavaScript

(Chakra)

C

C++

C#

VB

Metro style Apps

Communication

& Data

Application Model

Devices &

Printing

WinRT APIs

Graphics &

Media

XAML HTML / CSS

HTMLJavaScript

C

C++

C#

VB

Desktop Apps

Win32.NET

/ SL

Internet

Explorer

Syst

em

Serv

ices

Vie

wM

od

el

Co

ntr

oller

Co

re

Page 7: 70-480 - Programming in HTML5 with JavaScript and CSS3

Windows Core OS Services

JavaScript

(Chakra)

C

C++

C#

VB

Metro style Apps

Communication

& Data

Application Model

Devices &

Printing

WinRT APIs

Graphics &

Media

XAML HTML / CSS

HTMLJavaScript

C

C++

C#

VB

Desktop Apps

Win32.NET

/ SL

Internet

Explorer

Syst

em

Serv

ices

Vie

wM

od

el

Co

ntr

oller

Co

re

Page 8: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 9: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 10: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 11: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 12: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 13: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 14: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 15: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 16: 70-480 - Programming in HTML5 with JavaScript and CSS3

// Apply transform to the slide

].elm.style.msTransform =

"scale(0.4) perspective(290px) rotateY(17deg)";

// Apply transition to the slide

“transform”

"2.5s";

slides[i].elm.style.msTransitionDelay = "0s";

Page 17: 70-480 - Programming in HTML5 with JavaScript and CSS3

[381] Building beautiful and interactive apps with HTML5 & CSS3LEARN

MORE

Page 18: 70-480 - Programming in HTML5 with JavaScript and CSS3

Engaging page layouts

Page 19: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 20: 70-480 - Programming in HTML5 with JavaScript and CSS3

[873] Designing Metro style apps using CSS3LEARN

MORE

Page 21: 70-480 - Programming in HTML5 with JavaScript and CSS3

Powerful local data and offline

Page 22: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 23: 70-480 - Programming in HTML5 with JavaScript and CSS3

MIME Type: text/cache-manifest

Page 24: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 25: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 26: 70-480 - Programming in HTML5 with JavaScript and CSS3

// Read file using FileReader and register handler for loadend

var filereader = new FileReader();

filereader.imagediv = d; // expando to store image element

filereader.onloadend = handleReaderOnLoadEnd;

filereader.readAsDataURL(file);

// Set image src in loadend handler

function handleReaderOnLoadEnd(event)

{

var image = this.imagediv.children[0].children[0];

image.src = this.result;

}

Page 27: 70-480 - Programming in HTML5 with JavaScript and CSS3

LEARN

MORE

Page 28: 70-480 - Programming in HTML5 with JavaScript and CSS3

Easy-to-build, touch-first interactivity

Page 29: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 30: 70-480 - Programming in HTML5 with JavaScript and CSS3

LEARN

MORE

Page 31: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 32: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 33: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 34: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 35: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 36: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 37: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 38: 70-480 - Programming in HTML5 with JavaScript and CSS3

Better client/server data transfer

Page 39: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 40: 70-480 - Programming in HTML5 with JavaScript and CSS3

Securely enable the

real-time Web

For the browser and

beyond

Standards-based

and interoperable

[373] Building real-time web apps with HTML5 WebSocketsLEARN

MORE

Page 41: 70-480 - Programming in HTML5 with JavaScript and CSS3

http://www.ietestdrive.com/Links/DevGuide9.html

http://www.ietestdrive.com/Links/DevGuide10.html

http://forums.dev.windows.com

Page 42: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 43: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 44: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 45: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 46: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 47: 70-480 - Programming in HTML5 with JavaScript and CSS3

http://forums.dev.windows.com

http://bldw.in/SessionFeedback

Page 48: 70-480 - Programming in HTML5 with JavaScript and CSS3
Page 49: 70-480 - Programming in HTML5 with JavaScript and CSS3