1 / 39

CSS

CSS. Menus and Rollovers. Agenda foil. Separating style from content 3 pages in one file Rollovers in CSS Horizontal drop-downs Vertical drop-downs. Separating style from content. It is considered good programming style to separate the information from its formatting.

ashtyn
Download Presentation

CSS

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CSS Menus and Rollovers

  2. Agenda foil • Separating style from content • 3 pages in one file • Rollovers in CSS • Horizontal drop-downs • Vertical drop-downs

  3. Separating style from content • It is considered good programming style to separate the information from its formatting. • The information goes into the HTML file. • The formatting goes into the CSS file. • A good demonstration of this can be found in the site: http://www.csszengarden.com/

  4. 3 Pages in One File

  5. 3 pages in one file • In many web pages the masthead remains the same from page to page, as does the menu. • All that changes is the content. • So we put the content for 3 pages onto the one page and hide two of the “pages”. • We use CSS: • display: block; • display: none;

  6. 3 pages in one file • Demo what it does (a-switch)

  7. The menu links call a JavaScript routine • When clicked, the link does not call a web page (“#”) • Instead, it calls a JavaScript routine using a parameter (‘n0’ etc).

  8. Here are the JavaScript functions • The links call the function “display()”.

  9. 3 pages in one file • The links call the JavaScript functions • First the function “killall()” sets all content sections to invisible. • Then the function “display(x)” selects the content section to make visible. • That’s all folks:

  10. Rollovers in CSS

  11. Rollovers in CSS • The key to making rollovers work is to use the:hover pseudoclassas in: • a:link • a:visited • a:hover

  12. Rollovers with background colour

  13. Rollovers with background colour • Demo (rollover, bgcolour)

  14. Rollovers with background images

  15. Rollovers with background images • You simply define a different image in a:hover • Demo

  16. Rollovers with background images

  17. Horizontal drop-downs

  18. Horizontal drop-downs • By this I mean a horizontal menu, from which a second menu drops down • Demo (horiz-6)

  19. Horizontal drop-downs • We start off with a normal web page (demo html) • We then use CSS to style everything except the menu (demo html+css). We want a horizontal menu, but we now have a vertical menu.

  20. Horizontal drop-downs • Next we flatten the menu (html+css-1), using:list style: none;margin: 0;padding: 0;

  21. Horizontal drop-downs • Next (html+css-2) we arrange the list elements horizontally by floating them to the left.

  22. Horizontal drop-downs • Next (html+css-3) we display all links as blocks of width 200px and height 30px. This spreads the top line along the menu bar. We also remove the underlines of the links usingtext-decoration: none;

  23. Horizontal drop-downs • Next (html+css-4) we stop the submenus from being displayed at all (we’ll get them back later). We also set the submenus to position absolute, so they will not disturb the rest of the layout when they do appear.

  24. Horizontal drop-downs • Here is an example of what happens when you don’t set the dropdown elements to position absolute: • (demo try-index)

  25. Horizontal drop-downs • Next (css+html-5) we make the submenus appear when the menu elements are moused over. We use “hover” for that.

  26. Horizontal drop-downs • Finally (html+css-6) we style the submenus to make them look better. • That’s it!

  27. Vertical drop-downs

  28. Vertical drop-downs • This section covers vertical menus with submenus which appear to the side. Perhaps “drop-down” is an inappropriate name.

  29. We start with a standard HTML page (1-html)

  30. We add CSS to put everything in the right place.

  31. As usual, we put in CSS to hide the submenus normally, but display them when the main menu is moused over (demo 4-strict css).

  32. We style the box, to give it a background colour. • We give it a width and a position, which would cause it to interact with the content section, • So we make the block absolute, so it sits on top of the content block. (5-strict css+style)

  33. Finally we tidy up the page by adjusting the background colours. (6-tidy1)

  34. Agenda foil • Separating style from content • 3 pages in one file • Rollovers in CSS • Horizontal drop-downs • Vertical drop-downs

More Related