MTA EXAM 98-375 HTML5 Application Development Fundamentals.

Slides:



Advertisements
Similar presentations
XProtect® Web Client 1 Product presentation.
Advertisements

HTML5 Overview HOANGPT2. 1. General 2. New Elements List 3.
ComfortLink™ II Control. ComfortLink™ II Smart Control This is not just a thermostat. It’s an energy command center. Trane ComfortLink™ II is an easy-to-use,
Objectives Overview Define an operating system
* * To use Internet Explorer 9 you need Windows® 7, but you can use Internet Explorer 8 on Windows® XP Fast Internet Explorer 9 harnesses the untapped.
Copyright © 2012 Certification Partners, LLC -- All Rights Reserved Lesson 4: Web Browsing.
HTML5 Application Development Fundamentals
Event Handling. Overview How to listen (and not listen) for events Creating a utility library (and why you should) Typology of events Pairing event listeners.
HTML 5. What is HTML5? HTML5 will be the new standard for HTML, XHTML, and the HTML DOM. The previous version of HTML came in The web has changed.
HTML 5 Tutorial Chapter 1 Introduction. What is HTML5? HTML5 will be the new standard for HTML, XHTML, and the HTML DOM. The previous version of HTML.
Lecture 18. HTML5 and JavaScript Instructor: Jie Yang Department of Computer Science University of Massachusetts Lowell Exploring the Internet,
Using SMARTboards. What is a SMART board? According to the Wikipedia definition: “The SMART Board interactive whiteboard is a large, touch-controlled.
HTML5 and its Role in eLearning. What is HTML5 ? New standard of HTML from the Web Hypertext Application Technology Working Group (WHATWG) and the World.
Marquees and Standards Module 2: HTML Basics LESSON 9.
Spring /6.831 User Interface Design and Implementation1 Lecture 26: Mobile User Interfaces.
And Mobile Web Browsers
HTML5. What is HTML5? HTML5 will be the new standard for HTML. HTML5 is the next generation of HTML. HTML5 is still a work in progress. However, the major.
Publishing to Mobile Devices: Best Practices and Strategies Mike Hamilton V.P. Product Evangelism MadCap Software
Web Site development By: Cesar Torres THE WIX. What is WIX? Wix.com is a website that provides an easy-to-use online platform where you can create and.
HTML5 Application Development Fundamentals
Web Browsers And Mobile Web Browsers. Guiding Questions What is a mobile Web browser? Why do Web pages look differently on different Web browsers? What.
Taking Your Website On The Road Technology No Where to Go.
Explain the purpose of an operating system
MIS 425 Lecture 3 – HTML 5 and CSS Instructor: Martin Neuhard
Lesson13. JavaScript JavaScript is an interpreted language, designed to function within a web browser. It can also be used on the server.
MediMizer User Group  Users want an iPad application  Users want a web application  IT wants a no-installation client  Can be used anywhere.
 Computer News  Internet Explorer 10  Your Computer Problems  Website &  
Accessibility and Usability Evaluation Summary for Mobile and Web 2.0 Applications Najat Al Naamani INFO6002: Assistive Technologies.
Development Process Agile/XP Planning + Issue Tracking Google Code provided efficient + effective project management Bug and defect reports Project planning.
MTA EXAM HTML5 Application Development Fundamentals.
Browser Bugs & Validation SIPB Introduction to Web Design Wednesday, January 20th Jonté Craighead & Cathy Zhang.
The Web Wizard’s Guide to HTML Chapter One World Wide Web Basics.
Browser Wars (Click on the logo to see the performance)
GOSS iCM Gary Ratcliffe. 2 Agenda Webinar Programme V10 Overview Version Information Supported Browsers Architectural Changes New Features.
Chapter 9 Operating Systems Discovering Computers Technology in a World of Computers, Mobile Devices, and the Internet.
Managing the Application Life Cycle
MTA EXAM HTML5 Application Development Fundamentals.
MTA EXAM HTML5 Application Development Fundamentals.
#1 Firefox - Pros Fast Browsing Addons Saving Tabs/Automatic Session Restore Security Customisable Spell Checker Parental Control Saving Videos Download.
1 User’s Guide Gaining Access to the Site & Using Bookmarks Site Display Features: At First Glance Site Content: Interactive Map & Report Boxes Site Functionality:
Beginners Course Lesson 2. Review Basic Terminology.
JavaScript, Sixth Edition
History Before designing web pages it is important to know how it all came about… History Channel – The Invention of the Internet History Channel – The.
Lesson 1 – Getting Started with App Inventor
4.5. Respond to the touch interface 4.6. Code additional HTML5 APIs 4.7. Access device and operating system resources JavaScript Coding for the Touch Interface,
04 | Code by Using JavaScript Christopher Harrison | Content Developer, Microsoft Rachel Jones| Microsoft Certified Trainer, SourceDev.
+ CIW LESSON 4 Web Browsers. + Basic Functions of Web Browsers Provide a way for users to access and navigate Web pages Display Web pages properly Provide.
PARTNER CHAT TROUBLESHOOTING TIPS FOR USING vistahigherlearning.com/chat.
How to Use Safe Money in Kaspersky? Help Desk Number.
And Mobile Web Browsers
Nat 4/5 Computing Science Software
Surface 3 Tablet Set-Up Instructions.
What this activity will show you
Partner Chat TROUBLESHOOTING TIPS FOR USING
Browsers and Web Platforms
Web Standards Web Design – Sec 2-3
CRIP ENHANCEMENTS.
HTML 5 Tag By: Raul, Cordero.
HTML 5 Tutorial Chapter 1 Introduction.
Web Browsers & Mobile Web Browsers.
Web Standards Web Design – Sec 2-3
How to Install Microsoft Office 2013?
Dumps
Cayuse 424 Desktop Readiness.
History Before designing web pages it is important to know how it all came about… History Channel – The Invention of the Internet Start at 17mins.
McKesson Radiology Clinical Reference Viewer (CRV)
10 SUCCESSFUL ONLINE BUSINESSES
And Mobile Web Browsers
And Mobile Web Browsers
Lesson 3 Web Browsers.
Presentation transcript:

MTA EXAM HTML5 Application Development Fundamentals

98-375: OBJECTIVE 1 Manage the Application Life Cycle

Debug and test an HTML5-based touch- enabled application LESSON 1.3

In this lesson, you will review the following: Strategies to debug and test an HTML5-based touch-enabled application. The features of a HTML5-based touch-enabled application. OVERVIEW Lesson 1.3

Why is it important to debug and test your application? What are the features of an HTML5-based touch-enabled application? How is an HTML5 touch-enabled application tested? GUIDING QUESTIONS Lesson 1.3

LECTURE Lesson 1.3 HTML5 Feature Testing Test on various browsers, such as Internet Explorer ®, Firefox, Mozilla, and Google Chrome o Use the browsers on your desktop for initial debugging and testing. o If possible, test on different versions of each browser. o Test for various screen resolutions and browser window sizes.

LECTURE Lesson 1.3 Understand Touch Events in HTML5 Touch events include: o Touchstart: initiated when a finger is place on a DOM element o Touchmove: when the object is dragged o Touchend: when the object is released (finger is removed) Each touch event creates three lists: o Touches: a list of all fingers currently on the screen o targetTouches: list of fingers on the DOM o changedTouches: all fingers involved in the current event

LECTURELesson 1.3 Best practices for designing for mobile devices Prevent zooming Prevent scrolling Render carefully

DEMONSTRATION Lesson 1.3 Touch-Enabled Demonstration In this demonstration, you will see how to: Add touch interaction that handles input from: o mouse o finger o pen

DISCUSSION Lesson 1.3 Touch-Enabled Devices What are the pros and cons of touch-enabled devices?

IN-CLASS ACTIVITY Lesson 1.3 Directions: Read the scenario in the activity and answers the questions. Work with a partner to brainstorm additional ideas for the site.

REVIEW Lesson 1.3 Can you answer these? Why is it important to test your application on multiple browsers? What are the features of an HTML5-based touch-enabled application? How is a touch-enabled application tested?

ADDITIONAL RESOURCES Lesson 1.3 MSDN Resources HTML5 Tutorialshttp://msdn.microsoft.com/en- us/ie/aa Internet Explorer Test Drivehttp://ie.microsoft.com/testdrive/Default.ht ml Internet Explorer 9 Guide for Developers us/ie/hh Other Resources W3Schoolshttp:// W3C Mobile Device Validatorhttp://validator.w3.org/mobile/ Mobile Validatorhttp://ready.mobi/