CSSPIXELS.COM < csspixels@optusnet.com.au >
Now you are able to show your audience an online presentation without being in front of a crowd. A presentation that works just like PowerPoint and Keynote — with Handout-Notes when printing.
Of course you have access to the rest of your web site via the site wide main menu at the top of every slide. The menu at the bottom allows you to restart the presentation anytime from within any slide position and when you resize the browser window, all presentation content scales as well, including pictures and text.
Click the screen to advance to the next slide...
HANDOUT NOTE: Extra text here...
HANDOUT NOTE: Extra text here...
The Video Clip is 288 pixels wide by 210 pixels high, encoded with the high resolution MPEG4 codec, suitable for viewing on Windows and Macintosh, provided you have the Quicktime Player Plug-in installed. The Quicktime Plug-in has the necessary Active-X components included for viewing on a Windows PC and is optimised for Dial-Up and Broadband Connections.
|
HANDOUT NOTE: Extra text here...
"Incremental" means the display of single elements on a page with each Mouse Click or by using the Back/Forward Arrow Keys, revealing content snippets, one after the other.
For incremental display the class="incremental" is used on the following elements:
Using class="incremental" images and movies can be revealed, but also lists, tables and cells, as well as single paragraphs and a host of other things — just like in PowerPoint or Keynote.
As you can see, the possible solutions are really endless and just the same as in PowerPoint or Keynote, except the presentation is online — the user can consume the presentation on his/her own pace.
HANDOUT NOTE: Extra text here...
For adaptive layout, percentage widths on images are used together with CSS positioning:
When the browser window is resized the images on a slide will automatically also resize accordingly when images are used with widths in percentages instead of static values of points, ems or pixels.
This has the advantage of the layout showing consistent, no matter wether the viewport of the browser is large or small — content resizes relative to its surrounding context.
CSSPIXELS.COM 2007
HANDOUT NOTE: Extra text here...
With CSS relative positioning it is possible to lay images on top of each other to build up diagrams, charts, statistical information or just plain image layers.
Again, class="incremental" is used, not on the images to be layered, but on the container containing the images instead. Code Example:
<div class="incremental" style="margin-left: 4em; position: relative">
<img src="img/btn-firefox.gif" style="position: absolute; left: 0pt; top: 0pt;"/>
<img src="img/btn-firefox.gif" style="position: absolute; left: 50pt; top: 5pt;" />
<img src="img/btn-firefox.gif" style="position: absolute; left: 100pt; top: 10pt;" />
<img src="img/btn-firefox.gif" style="position: absolute; left: 150pt; top: 15pt;" />
</div>



HANDOUT NOTE: Extra text here...

