Bells and Whistles - PowerPoint PPT Presentation

1 / 18
About This Presentation
Title:

Bells and Whistles

Description:

XML (Extended Markup Language. Database Connectivity. Ecommerce ... INPUT NAME='submit' TYPE=Button VALUE='Show Me' onClick='MsgBox(form.text1.value) ... – PowerPoint PPT presentation

Number of Views:144
Avg rating:3.0/5.0
Slides: 19
Provided by: www1Pa
Category:

less

Transcript and Presenter's Notes

Title: Bells and Whistles


1
Lecture
  • Bells and Whistles

2
Ways to Enhance Websites
  • Java Script and Java
  • Sound and Video
  • Flash
  • XML (Extended Markup Language
  • Database Connectivity
  • Ecommerce
  • Ajax (asynchronous JavaScript and XML),

3
What is Java Script?
  • Text-based Programming Language
  • Used to Enhance Websites
  • Interactivity
  • Animation
  • Dynamic Content
  • Games
  • Calculations
  • All code is run by the browser

4
What is Java?
  • Java is also a language (OOP Object Oriented
    Progamming)
  • Used to create applets
  • Little programs that sit on a web server
  • Called by the webpage
  • Code cannot be stolen Its compiled
  • HTML only references the applet

5
Java vs Java Script
  • Java
  • Called by HTML from the server
  • Hidden Code
  • Quicker Execution
  • Java Script
  • Stored in HTML (inline or internal)
  • Viewable Code
  • Slower Execution

6
Java vs Java Script
Java Script
Java Programs
Java Script
Java Script
7
Java Script Syntax
Tells the browser we are starting some JavaScript
code to run.
  • Internal Script
  • ltscript language"JavaScript"gt
  • lt!--
  • alert("Hello World!")
  • //--gt
  • lt/scriptgt

Programming steps to actually execute.
Finishes the block of code.
8
Java Script Syntax
  • Inline Script
  • lta href"index.html"
  • onMouseOver'document.images.woods.src"spongebob.
    jpg"'
  • onMouseOut'document.images.woods.src"woods.jpg"'
    gt
  • ltimg src'woods.jpg 'namewoods' width75
    height75gt
  • lt/agt

Event Trigger
Action to Take
Parameter
9
Java Script Syntax (cont)
10
Java Script Examples
  • Alert Message
  • Mouse-Over Image Swap
  • Todays Date

11
Example 1 Alert Message
  • ltscript language"Javascript"gt
  • lt!--
  • alert ("This is the easiest script")
  • //--gt
  • lt/scriptgt

12
Example 2 Mouse Over
  • lta href"index.html"
  • onMouseOver"document.images.woods.src'spongebob.
    jpg' "
  • onMouseOut"document.images.woods.src'woods.jpg'
    "gt
  • ltimg src"woods.jpg" name"woods" width75
    height75gt
  • lt/agt

13
Example 3 Todays Date
14
More Java Scripts
  • Dynamic Drive
  • www.dynamicdrive.com

15
Adding Sound
  • As a Link
  • lta href"moo.wavgtClick here for the cowlt/agt
  • Automatically Loading
  • ltembed srcmoo.wavgt
  • Variables
  • hiddentrue to hide player
  • loop1 or -1 how many times does it play?

16
Finding sound files
  • Google
  • Find song and YouTube and convert to .mp3 file
  • Click Share
  • Copy URL
  • Go to
  • www.youtube-mp3.org
  • Then.

17
YouTube to.mp3
  • Paste link into YouTube to .mp3
  • Click Convert Video
  • Then Download to web-docs
  • Save according tofile-namingconventionsshort,
    no spaces!

18
Adding Video
  • Google YouTube

Copy and paste into your website with the
ltembedgt tag
Write a Comment
User Comments (0)
About PowerShow.com