[ Index ]

PHP Cross Reference of Drupal 6 (yi-drupal)

title

Body

[close]

/sites/all/libraries/highslide/examples/ -> outer-glow.html (source)

   1  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "xhtml11.dtd">
   2  <html>
   3  <head>
   4  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   5  
   6  <title>Highslide JS</title>
   7  
   8  <!--
   9      1 ) Reference to the files containing the JavaScript and CSS.
  10      These files must be located on your server.
  11  -->
  12  
  13  <script type="text/javascript" src="../highslide/highslide.js"></script>
  14  <link rel="stylesheet" type="text/css" href="../highslide/highslide.css" />
  15  
  16  
  17  <!--
  18      2) Optionally override the settings defined at the top
  19      of the highslide.js file. The parameter hs.graphicsDir is important!
  20  -->
  21  
  22  <script type="text/javascript">
  23      hs.graphicsDir = '../highslide/graphics/';
  24      hs.outlineType = 'outer-glow';
  25      hs.wrapperClassName = 'outer-glow';
  26  </script>
  27  
  28  
  29  </head>
  30  
  31  <body style="background-color: black">
  32  <div>
  33  <!--
  34      3) This is how you mark up the thumbnail image with an anchor tag around it.
  35      The anchor's href attribute defines the URL of the full-size image.
  36  -->
  37  <a id="thumb1" href="../images/full-image.jpg" class="highslide" onclick="return hs.expand(this)">
  38      <img src="../images/thumbnail.jpg" alt="Highslide JS"
  39          title="Click to enlarge" height="120" width="107" /></a>
  40  
  41  <!--
  42      4 (optional). This is how you mark up the caption. The caption must be directly
  43      after the anchor above.
  44  -->
  45  
  46  <div class="highslide-caption">
  47      This caption can be styled using CSS.
  48  </div>
  49  
  50  
  51  </div>
  52  </body>
  53  </html>


Generated: Mon Jul 9 18:01:44 2012 Cross-referenced by PHPXref 0.7