Advanced DHTML, Dynamic CSS

Slides:



Advertisements
Similar presentations
Microsoft Expression Web-Illustrated Unit K: Working with Behaviors.
Advertisements

Building the e-Zine. The e-Zine is in the form of a Website and must contain the following: Several pages, which must be linked, including an Information.
PowerPoint for Money Management Works Using Microsoft Office Online Training Program Presented by: Funded by the Australia Government Department of FaHCSIA.
Dreamweaver CS4 Concepts and Techniques Chapter 8 Media Objects.
Ch. 6 Web Page Design – Absolute Positioning, Image Maps, and Navigation Bars Mr. Ursone.
Macromedia Dreamweaver 4 Advanced Level Course. Add Rollovers Rollovers or mouseovers are possibly the most popular effects used in designing Web pages.
CSS Box Model An CSS Primer Tutorial. Project 04 Open Finder or Windows explorer and path the folder where you store your class project work. Make a copy.
Creating & Attaching CSS An CSS Primer Tutorial. A New CSS Document Create a new CSS Document in Dreamweaver using the “New” option under the File Menu.
Inline, Internal, and External FIle
HTML Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
Getting Started with Dreamweaver
 Using Microsoft Expression Web you can: › Create Web pages and Web sites › Set what you site will look like as you design it › Add text, images, multimedia.
Creating A Simple Web Page. Step 1- Open Dreamweaver & Create A New Page (File New) and blank.
JavaScript and The Document Object Model MMIS 656 Web Design Technologies Acknowledgements: 1.Notes from David Shrader, NSU GSCIS 2.Some material adapted.
JQuery Page Slider. Our goal is to get to the functionality of the Panic Coda web site.Panic Coda web site.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
© Cheltenham Computer Training 2001 Macromedia Dreamweaver 4 - Slide No 1 Macromedia Dreamweaver 4 Advanced Level Course.
© Ms. Masihi.  The Dreamweaver Welcome Screen first opens when you start Dreamweaver.  This screen gives you quick access to previously opened files,
Page 1 Simple PowerPoint Menus Section 1 Section 3 Section 2 Tutorial.
10 Adding Interactivity to a Web Site Section 10.1 Define scripting Summarize interactivity design guidelines Identify scripting languages Compare common.
Lecture 11 – DOM Scripting SFDV3011 – Advanced Web Development Reference: 1.
DHTML: Dynamic HTML Internet Technology1. What is DHTML? A collection of enhancements to HTML ► To create dynamic and interactive websites Combination.
Adding User Interactivity – Lesson 51 Adding User Interactivity Lesson 5.
Website Development with Dreamweaver
SEG3210 DHTML Tutorial. DHTML DHTML is a combination of technologies used to create dynamic and interactive Web sites. –HTML - For creating text and image.
Chapter 10 Fireworks: Part II The Web Warrior Guide to Web Design Technologies.
Macromedia Dreamweaver 8-- Illustrated Introductory 1 Macromedia Dreamweaver 8 Unit E Using and Managing Images.
Scripting Language A scripting language or script language is a programming language that supports the writing of scripts. The term script is typically.
An Introduction to JavaScript Summarized from Chapter 6 of “Web Programming: Building Internet Applications”, 3 rd Edition.
Lesson 19: Site Development with FrontPage 2003 – Advanced Features.
Unit 10 – Web Authoring Web Authoring – Qatar Tourism Lesson 3 & 4.
Working with Graphics – Lesson 21 Working with Graphics Lesson 2.
Cs332a_chapt10.ppt CS332A Advanced HTML Programming DHTML Dynamic Hypertext Markup Language A term describing a series of technologies Not a stand-a-lone.
Advanced DHTML, Dynamic CSS. Animating an object Take a look at script to move an object from corner to cornercorner to corner You should have the basic.
Web Foundations WEDNESDAY, NOVEMBER 20, 2013 LECTURE 32: DREAMWEAVER SLIDE SHOW AND GOOGLE MAP.
DYNAMIC HTML What is Dynamic HTML: HTML code that allow you to change/ specify the style of your web pages. Example: specify style sheet, object model.
TOPIC II Dynamic HTML Prepared by: Nimcan Cabd Cali.
Double click here to add event title Double click here to add event date Double click here to add event time Double click here to add event location.
Chapter 10 Dynamic HTML (DHTML) JavaScript, Third Edition.
Learning Aim C.  Creating web pages involves many considerations.  In this section we will look at the different software tools you can use and how.
JavaScript and Ajax (JavaScript Environment) Week 6 Web site:
Adding Interactivity Comp 140 Fall Web 2.0 Major change in internet usage –From mostly static pages Text Graphics Simple links –To new paradigm.
Source of website: “Text/css rel=“styles heet” This is an external style sheet link. This means that the.
COM621: Advanced Interactive Web Development Lecture 6 – JavaScript (cont.)
Getting Started with Dreamweaver
Tips & Tricks with Multiple Skins
DHTML.
Open the Nissan.html page in a suitable application and create the table shown below between Table 3 and 4. Set the appropriate sizes for each cell. A.
8.12 release Notes.
Using DHTML to Enhance Web Pages
JavaScript Event Handling.
Section 10.1 YOU WILL LEARN TO… Define scripting
The Web Wizard’s Guide To DHTML and CSS
DHTML Javascript Internet Technology.
Presentation Title goes here, Long if needed
DHTML Javascript Internet Technology.
presentation Title Goes Here
Getting Started with Dreamweaver
ADD YOUR TITLE HERE OPTION 01 OPTION 02 OPTION 03 OPTION 04
presentation Title Goes Here
Presentation Title goes here, Long if needed
EVENT TITLE Time, Date Location
YOUR text YOUR text YOUR text YOUR text
EVENT TITLE Time, Date Location
With Animation 2. The Second Wave 1. The First Wave 3. The Third Wave.
One Set of Styles Connected to As Many Pages as You Want!!!
2019 PowerPoint Template powerpoint template designed by freeppt7.com.
Other options Note: Style switcher.
Click here to add your title
Presentation transcript:

Advanced DHTML, Dynamic CSS Chapters 17, 18

Animating an object Take a look at script to move an object from corner to corner You should have the basic idea from the tractor script shown earlier

Other actions Move in a circle Follow the pointer Draggable objects Simple popup windows (this could be useful); these are also behaviors in Dreamweaver. Move window Resize it

Changing Styles There is one example here in Chapter 18 that changes text size. Note Object.style[stylename] = newVal There is another in Chapter 24. You will need to adopt one or the other. Other options here are reading styles from the sheet, and changing classes. A more complete switcher changes the whole style sheet (also consider <link type="text/css" rel="alternate stylesheet" href="other.css"/> which still must be called in the page)

Using alternate stylesheets Here's a script from alistapart.com that makes sure that other stylesheets are disabled, and that stores the style's status in a cookie styleswitcher.js Create alternate stylesheets with titles (no title for the original stylesheet) <link rel="alternate stylesheet" title="fred" href="fred.css"/> Connect to the script below the stylesheets <script type="text/javascript" src="styleswitcher.js"></script> Add event handlers <a href="#" onclick="setActiveStyleSheet ('fred'); return false;">Choose Fred</a> The original article is here.