Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I made <a href="http://jsfiddle.net/3TJrj/" rel="nofollow noreferrer">a demo</a> for you. But basically I had to move the description blocks outside of the <code>image_reel</code> block because it was being re-positioned and it would have been too much trouble to add scripting to position it properly.</p> <p>So here is a summary of changes: Added CSS</p> <pre><code>.desc { display: none; position: absolute; top: 0; left: 0; z-index: 101; background: url(http://i45.tinypic.com/30w087b.png); /* 1x1 png with 70% opacity */ color: #fff; font-size: 2em; padding: 10px; -moz-border-radius: 0 0 3px 0; -khtml-border-radius: 0 0 3px 0; -webkit-border-radius: 0 0 3px 0; } </code></pre> <p>New Window Block</p> <pre><code>&lt;div class="window"&gt; &lt;div class="image_reel"&gt; &lt;a href="http://www.designbombs.com/tag/slider/"&gt;&lt;img src="reel_1.jpg" alt="" /&gt;&lt;/a&gt; &lt;a href="http://www.designbombs.com/tag/slider/"&gt;&lt;img src="reel_2.jpg" alt="" /&gt;&lt;/a&gt; &lt;a href="http://www.designbombs.com/tag/slider/"&gt;&lt;img src="reel_3.jpg" alt="" /&gt;&lt;/a&gt; &lt;a href="http://www.designbombs.com/tag/slider/"&gt;&lt;img src="reel_4.jpg" alt="" /&gt;&lt;/a&gt; &lt;/div&gt; &lt;div class="descriptions"&gt; &lt;div class="desc"&gt;blah blah blah 1&lt;/div&gt; &lt;div class="desc"&gt;blah blah blah 2&lt;/div&gt; &lt;div class="desc"&gt;blah blah blah 3&lt;/div&gt; &lt;div class="desc"&gt;blah blah blah 4&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>Script (Updated)</p> <pre><code>//slide up and down when hover over heading 2 $(".window").hover(function(){ // slide toggle effect set to slow you can set it to fast too. $(".desc").eq( $('.paging a.active').attr("rel") - 1 ).slideDown("slow"); return true; }, function(){ $(".desc").stop(true,true).slideUp('slow'); }); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload