Содержание

Слайд 2

This is your webpage

http://www.ed.uiuc.edu/access/TT/fig2.gif
http://www.quackit.com/pix/make-your-own-website/example1.gif

This is your webpage http://www.ed.uiuc.edu/access/TT/fig2.gif http://www.quackit.com/pix/make-your-own-website/example1.gif

Слайд 3

This is your webpage on frames

http://www.ibm.com/developerworks/library/wa-fram/frames3.gif
http://www.brighthub.com/computing/windows-platform/articles/7055.aspx

This is your webpage on frames http://www.ibm.com/developerworks/library/wa-fram/frames3.gif http://www.brighthub.com/computing/windows-platform/articles/7055.aspx

Слайд 4

What is a frame?
Holds a file
divide the screen into windows
Windows can have

What is a frame? Holds a file divide the screen into windows
XHTML documents
What is a frameset?
holds one or more frames
Specifies:
# of columns and rows
percentage/pixels of space each occupies
A file that tell the browser how the screen is to be divided into frames

Слайд 5

This means that to make a webpage with frames you need 2

This means that to make a webpage with frames you need 2
things:
A XHTML with frames
Separate XHTML files that you will load into these frames
To see the webpage you load the XHTML with frames
It loads the individual pages automatically.

Слайд 6

Frames Pros and Cons

Pros
Easier to navigate site
one frame has main navigation bar
can

Frames Pros and Cons Pros Easier to navigate site one frame has
save designer’s time when making changes and updates to site.
Changes only made on the one web page that is attached to the frame
not every page on site.
viewer can navigate faster
not every frame has to be reloaded each time a new page is visited.
especially true if one frame has graphics
Especially if source file is big
Loading initial page may be slow to load
but rest of pages will be faster

Слайд 7

Cons
some browsers don’t support frames.
Minor problem
some people don’t like them.
same

Cons some browsers don’t support frames. Minor problem some people don’t like
thing for other web design components (e.g., Flash)
a lot of this is because some web pages used frames badly
avoidable

Слайд 8

set to:
"HTML Frameset DTD"

set to: "HTML Frameset DTD" or "XHTML Frameset DTD". defines a window
"http://www.w3.org/TR/html4/frameset.dtd">
or "XHTML Frameset DTD".



defines a window in the
Can have attributes, e.g.:
border
scrolling
Noresize
Frameborder
Marginheight
Marginwidth
src

Слайд 9

What does this page look like?




What does this page look like? Answer: 3 Vertical Frames (I:\COMP1229\2012W\Week4Lab-Frames\Eg2-3VertFrames) These
/>



Answer: 3 Vertical Frames
(I:\COMP1229\2012W\Week4Lab-Frames\Eg2-3VertFrames)
These windows need names to load pages.
e.g.
* is needed because you don’t know what screen resolution user has.
It automatically adjusts page to size of screen

Notice anything different?
Where’s the ?
replaces it

Слайд 10

src setting
add default pages to windows
default pages
pages loaded when the frameset

src setting add default pages to windows default pages pages loaded when
is opened first time
name setting
adds names to each window
Lets us open a page in a window.

Слайд 11

In Class Assignment

Make a webpage with frames
3 frames
2 columns
Left column 120 pixels

In Class Assignment Make a webpage with frames 3 frames 2 columns
in width
Right Column rest of screen
2 rows in second column
Bottom row 50 pixels
Top row rest of screen
Make the left column the index frame
Rest of the columns can contain any content you like
Make sure that each window loads different content.

Слайд 12

Solution

My Frames Page

Solution My Frames Page
name="bottom“ noresize >

Слайд 13

Logic of code:

Logic of code: One column, 120 pixels wide 2nd column rest of


One column, 120 pixels wide
2nd column rest of screen
This column contains 2 rows
Bottom is 50 pixels
Top is remainder.
windows need names to load pages.

Слайд 14

If you want to open a file in a frame (e.g. the

If you want to open a file in a frame (e.g. the
one named main) use a hyperlink:
Opens newFile in the main window
Some target names are reserved:
_blank loads the page into a new browser window
_self loads the page into the current window.
_parent loads the page into the frame that is superior to the frame the hyperlink is in.
_top cancels all frames, loads in full browser window.

Слайд 15

explain what it means



My Frames Page


explain what it means My Frames Page
scrolling=no>







Слайд 16

frameborder="0" border="0" framespacing="0“
Makes frame borders invisible. Applies to the frameset only.
Challenge: make

frameborder="0" border="0" framespacing="0“ Makes frame borders invisible. Applies to the frameset only.
only the right portion of the webpage’s boarders invisible
Sol’n: put the frameborder="0" border="0" framespacing="0“ only in the second frameset tag.
Notice: frameborder="0" border="0" framespacing="0“ also prevents user from resizing
Noresize – prevents user from changing size of the window
Notice: all the borders touching frame become frozen.
So you might noresize neighbours unintentionally if they only have 1 border & it is with you.
Scrolling – allows you to hide / auto show the scroll bar

Слайд 17

Frameset not supported in HTML5
NOFrames element
gives alternate content to browsers

Frameset not supported in HTML5 NOFrames element gives alternate content to browsers
that:
do not support frames
or have frames disabled
optional
Should always include it.

Слайд 18

ROWS and COLS attributes
define dimensions of each frame in the set.
Takes

ROWS and COLS attributes define dimensions of each frame in the set.
comma-separated list of lengths
specified in:
Pixels
used when the frame consists of objects with a fixed size in pixels
- e.g., picture
Percentage
relative length
expressed as i* where i is an integer.
example, ROWS="3*,*" (* is equivalent to 1*) will have its first row allotted three times the height of the second row.
ROWS attribute give the height of each row, from top to bottom.
COLS attribute gives the width of each column from left to right.
If ROWS or COLS is omitted, implied value for attribute is 100%.
If both attributes are specified, a grid is defined and filled left-to-right then top-to-bottom.

Слайд 19

Example: grid with two rows and three columns


Example: grid with two rows and three columns Table of Contents Photo
NAME="Photo1" SRC="Row1_Column1.html">





<br> <BODY><br> <H1>Table of Contents</H1><br> <UL><br> <LI><br> <A HREF="Row1_Column1.html">Photo 1</A><br> (<A HREF="Row2_Column1.html">Caption</A>)<br> </LI><br> <LI><br> <A HREF="Row1_Column2.html">Photo 2</A><br> (<A HREF="Row2_Column2.html">Caption</A>)<br> </LI><br> <LI><br> <A HREF="Row1_Column3.html">Photo 3</A><br> (<A HREF="Row2_Column3.html">Caption</A>)<br> </LI><br> </UL><br> </BODY><br>

Слайд 20

Example: nested FRAMESET elements to define two frames in the first row

Example: nested FRAMESET elements to define two frames in the first row
and one frame in the second row







<br> <BODY><br> <H1>Table of Contents</H1><br> <UL><br> <LI><br> <A HREF="reference/html40/">HTML 4 Reference</A><br> </LI><br> <LI><br> <A HREF="reference/wilbur/">HTML 3.2 Reference</A><br> </LI><br> <LI><br> <A HREF="reference/css/">CSS Guide</A><br> </LI><br> </UL><br> <P><br> <IMG SRC="ad.gif" ALT="Ad: Does your bank charge too much?"><br> </P><br> </BODY><br>

Имя файла: Frames-.pptx
Количество просмотров: 123
Количество скачиваний: 0