Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Stolen from <a href="http://www.cssplay.co.uk/menu/magnify.html" rel="nofollow">CSSplay - magnify</a>, you can do this without Javascript </p> <p>HTML:</p> <pre><code>&lt;tr&gt; &lt;td colspan=2&gt; &lt;p align="center"&gt; &lt;a class="rollover" href="contactdetail.php"&gt; &lt;img src="http://womeninbiznetwork.com/wp-content/uploads/2011/07/logo-google.thumbnail.gif" name="pic" border="0"/&gt; &lt;span&gt;&lt;img src="http://www.google.com/intl/en_ALL/images/logos/images_logo_lg.gif"/&gt;&lt;/span&gt; &lt;/a&gt; &lt;/p&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Here is text&lt;/td&gt; &lt;/tr&gt; </code></pre> <p>CSS:</p> <pre><code>a.rollover { display: block; position: relative; } a.rollover span { position: absolute; left: -10000px; } a.rollover:hover span { position: absolute; left: 200px; } </code></pre> <p><a href="http://jsfiddle.net/gLr9Q/5/" rel="nofollow">JSFiddle</a></p> <p><strong>Update</strong>:</p> <p>I don't know, if this is what you have in mind, but you can position the larger image anywhere you want </p> <p>CSS:</p> <pre><code>a.rollover:hover span { position: absolute; left: 120px; top: -20px; } </code></pre> <p><a href="http://jsfiddle.net/gLr9Q/7/" rel="nofollow">JSFiddle</a></p> <p>If you want to hide the lower image on hover, you can try adding <code>opacity: 0</code> </p> <pre><code>&lt;img class="thumbnail" src="..."&gt; </code></pre> <p>and </p> <pre><code>a.rollover:hover .thumbnail { opacity: 0; } </code></pre> <p><a href="http://jsfiddle.net/gLr9Q/8/" rel="nofollow">JSFiddle</a></p> <p>Although, I don't know if this works on every browser.</p>
    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