Lecture 11 Scrolling XHTML elements + a bit on Java Applets Boriana Koleva Room: C54

Slides:



Advertisements
Similar presentations
Overview Environment for Internet database connectivity
Advertisements

Project 1 Introduction to HTML.
Applets The objectives of this chapter are: To describe applets and their purpose To discuss embedding applets in HTML pages.
MSc. Publishing on WWW JavaScript. What is JavaScript? A scripting language devised by Netscape Adds functionality to web pages by: Embedding code into.
Applets. The Applet Class public class MyApplet extends java.applet.Applet {... /** The no-arg constructor is called by the browser when the Web page.
Review of Java Applets Vijayan Sugumaran Decision and Information Sciences Oakland University.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 16 Applets.
Outline IS400: Development of Business Applications on the Internet Fall 2004 Instructor: Dr. Boris Jukic Server Side Web Technologies: Part 2.
INTERNET DATABASE. Internet and E-commerce Internet – a worldwide collection of interconnected computer network Internet – a worldwide collection of interconnected.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 14 Applets, Images,
WWW and Internet The Internet Creation of the Web Languages for document description Active web pages.
Tutorial 7 Working with Multimedia. XP Objectives Explore various multimedia applications on the Web Learn about sound file formats and properties Embed.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved L05 (Chapter 16) Applets.
4.01B Authoring Languages and Web Authoring Software 4.01 Examine webpage development and design.
HTML 1 Introduction to HTML. 2 Objectives Describe the Internet and its associated key terms Describe the World Wide Web and its associated key terms.
Chapter ONE Introduction to HTML.
Computer Concepts 2014 Chapter 7 The Web and .
G51WPS Web Programming and Scripting Boriana Koleva Room: C54 Phone:
Internet Applications Notes for Chapter 19 Digital Domain, 2 ed.
Tutorial 7 Working with Multimedia. XP Introducing Multimedia Bandwidth is a measure of the amount of data that can be sent through a communication pipeline.
HTML Forms and Scripts. Session overview What are forms? Static vs dynamic Client-side scripts –JavaScript.
Chapter 6 The World Wide Web. Web Pages Each page is an interactive multimedia publication It can include: text, graphics, music and videos Pages are.
Introduction to Internet Programming (Web Based Application)
Chapter 17 - Deploying Java Applications on the Web1 Chapter 17 Deploying Java Applications on the Web.
Tutorial 7 Working with Multimedia. XP Objectives Explore various multimedia applications on the Web Learn about sound file formats and properties Embed.
20-753: Fundamentals of Web Programming 1 Lecture 1: Introduction Fundamentals of Web Programming Lecture 1: Introduction.
HTML. Principle of Programming  Interface with PC 2 English Japanese Chinese Machine Code Compiler / Interpreter C++ Perl Assembler Machine Code.
Java Applets. 2 Introduction to Java Applet Programs  Applications are stand alone programs executed with Java interpreter executed with Java interpreter.
Fundamentals of Web Publishing MIS 208-B LEC: T 08:15PM-10:05PM- ADM102 LAB: TH 08:15PM-10:05PM - ADM138 Andy Stokes.
CIS 250 Advanced Computer Applications Internet/WWW Review.
Web Pages with Features. Features on Web Pages Interactive Pages –Shows current date, get server’s IP, interactive quizzes Processing Forms –Serach a.
Tutorial 7 Working with Multimedia. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition 2 Objectives Explore various multimedia applications.
Tutorial 7 Working with Multimedia. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition 2 Objectives Explore various multimedia applications.
Lesson 19: Site Development with FrontPage 2003 – Advanced Features.
Structure of the Internet. Internet Structure LAN ISP Internet Backbone.
Java Applets. 2 Introduction to Java Applet Programs Applications are ___________________ programs –executed with Java interpreter Applet is a small program.
Web Design (1) Terminology. Coding ‘languages’ (1) HTML - Hypertext Markup Language - describes the content of a web page CSS - Cascading Style Sheets.
1 MSCS 237 Overview of web technologies (A specific type of distributed systems)
CSE S. Tanimoto Java Introduction 1 Java A Programming Language for Web-based Computing with Graphics.
Web Development in Microsoft Visual Studio Slide 2 Lecture Overview How to create a first ASP.NET application.
Applets Yong Choi School of Business CSU, Bakersfield.
Copyright © by Shayne R Flint Simplified Web Application Development Shayne R Flint Department of Computer Science Australian National University.
RUBRIC IP1 Ruben Botero Web Design III. The different approaches to accessing data in a database through client-side scripting languages. – On the client.
Web Pages with Features. Features on Web Pages Interactive Pages –Shows current date, get server’s IP, interactive quizzes Processing Forms –Serach a.
Chapter 14 Applets and Advanced GUI  The Applet Class  The HTML Tag F Passing Parameters to Applets F Conversions Between Applications and Applets F.
Intro to Applets. Applet Applets run within the Web browser environment Applets bring dynamic interaction and live animation to an otherwise static HTML.
Chapter 4 Applets Cop Why Applets? WWW makes huge information available to anyone with web browser. Web server send web pages and images to your.
1 Applets are small applications that are accessed on an Internet server, transported over the internet, automatically installed and run as a part of web.
And Writing HTML Chang-Yang Lin Eighth Annual Meeting of the Minds Conference Eastern Kentucky University September 11, 2004.
Chapter 8 Frameworks. Frameworks Framework is a set of cooperating classes and interface types that structures the essential mechanisms of a particular.
Applets, Images, and Audio Chapter 14 CSCI CSCI 1302 – Applets, Images, and Audio2 Outline Introduction The Applet Class –The init Method –The start.
4.01B Authoring Languages and Web Authoring Software 4.01 Examine webpage development and design.
HTML Concepts and Techniques Fifth Edition Chapter 1 Introduction to HTML.
Lesson 30: JavaScript and DHTML Fundamentals. Objectives Define and contrast client-side and server-side technologies used to create dynamic content for.
Introduction to the World Wide Web & Internet CIS 101.
1 LM 6 Database Applications Dr. Lei Li. Learning Objectives Explain three components of a client-server system Describe differences between a 2-tiered.
The Internet Salihu Ibrahim Dasuki (PhD) CSC102 INTRODUCTION TO COMPUTER SCIENCE.
CSE S. Tanimoto Java Introduction 1 Java A Programming Language for Web-based Computing.
Section 10.1 Define scripting
Applications Active Web Documents Active Web Documents.
Web-based Software Development - An introduction
Project 1 Introduction to HTML.
Web Concepts Lesson 2 ITBS2203 E-Commerce for IT.
What is WWW? The term WWW refers to the World Wide Web or simply the Web. The World Wide Web consists of all the public Web sites connected to the Internet.
Chapter 1 Introduction to HTML.
Tutorial 7 Working with Multimedia
Java Applets.
Working with Multimedia
Information Retrieval and Web Design
G6DICP - Lecture 27 Java Applets.
Presentation transcript:

Lecture 11 Scrolling XHTML elements + a bit on Java Applets Boriana Koleva Room: C54

Scrolling elements In HTML – MARQUEE tag Not supported in XHTML as often not a good feature! YOUR TEXT GOES HERE For image:

Scrolling elements - DHTML Example DHTML scripts for the showcasing of images on your site Conveyor Belt slideshow script scrolls the containing images in a "conveyor belt" fashion slide.htm Carousel Slideshow displays images in a 3D, carousel fashion

Java Applets Applets are relatively small Java programs whose execution is triggered by a browser The purpose of an applet is to provide processing capability and interactivity for XHTML documents through widgets Applets still found on some web pages, and there is heavier use in intranets, where all browsers can be required to support the latest JVM Alternative to embedded client-side scripts

Java Applets on the WWW HTTP Server Apache MS IIS Client Mozilla MS Internet Explorer HTTP XHTML data + Java Applet Applet Java VM in the Client (Browser)

Feasibility of Applets Java has platform independent binaries WWW is designed to be data neutral Security is the major issue Security restrictions applied by browser

Applet and JApplet java.applet.Applet – the class which provides the standard interface between the applet and the browser environment GUI with AWT package JApplet - a class that enables applets to use Swing components JApplet is a subclass of java.applet.Applet