Recipe 3.12. Building a Panoramic Image Presentation


Problem

You want to create the appearance that the width of an image to increases or decreases as a user resizes his browser window, like the one in Figure 3-21.

Figure 3-21. Browser window increased in size to show more of the panoramic image


Solution

Place an image element that refers to a panoramic image into the background of a block-level element (see Figure 3-22).

<h1>Visit France City!</h1>  <div><img src="/books/3/27/1/html/2/frenchtown.jpg" alt=" " /></div> <h2>The quaint and charming little destination in France</h2>

Figure 3-22. Panoramic photo placed on a web page


Position the image element in the upper-right corner of the block-level element, and then hide the image by setting the display to none:

div {  background-image: url(frenchtown.jpg);  background-repeat: no-repeat;  background-position: top right;  height: 300px;  border: 1px solid black;  max-width: 714px; } div img {  display: none; }

When the image is placed as a background image, it will be resized based on the size of the browser window.

Discussion

To create a panoramic presentation, you need a wide photograph. You then need to position the image element in the upper-right corner of the block-level element so that the image will grow or shrink depending on the size of the browser window. The use of max-width property constrains the width of the div element from expanding beyond the width of the image itself.

In this solution, the same image is used in both the HTML and CSS. The rationale behind this approach is to make sure the image (or content) displays, even if the user agent rendering the page doesn't understand CSS.

See Also

http://www.creighton.edu/~jaypl/oldpage/panhow.html for more information on how to create panoramic pictures; the CSS 2.1 specification for max-width property at http://www.w3.org/TR/CSS21/visudet.html#propdef-max-width.




CSS Cookbook
CSS Cookbook, 2nd Edition
ISBN: 0596527411
EAN: 2147483647
Year: 2006
Pages: 235

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net