1

我想让用户展开缩略图以在鼠标悬停时查看大型个人资料图片。但是,我目前拥有的翻转效果将表格行扩展为扩展图像的大小,而不是在周围的文本上显示图像。任何人都可以建议一种在不移动文本的情况下在翻转时扩展图像的方法,换句话说,在其他 html 之上显示更大的图像,而不是将其推开。我已经尝试过 z-index 但这似乎不起作用。

这是一个演示问题的jsfiddle:

http://jsfiddle.net/gLr9Q/

这是与 js fiddle 中相同的代码:

<script language="JavaScript">
  <!-- hide from non JavaScript Browsers
  image = new Array()
  image[0]= new Image(24,24)
  image[0].src = "http://womeninbiznetwork.com/wp-content/uploads/2011/07/logo-google.thumbnail.gif"
  image[1] = new Image(48,48)
  image[1].src = "https://www.google.com/intl/en_ALL/images/logos/images_logo_lg.gif"
</script>
<tr><td colspan=2>
<p align="center"> 
<a href="contactdetail.php"
  onmouseover="newPic()"
  onmouseout="oldPic()">
<img src="http://womeninbiznetwork.com/wp-content/uploads/2011/07/logo-google.thumbnail.gif"
  name="pic" 
class="rollover"  
    border=0>
</a> 
</p></td></tr>
<tr><td>Here is text</td></tr>

js

function newPic(){
    document.pic.style.left="-24px";
    document.pic.style.top="-24px";
     document.pic.src = image[1].src;
    return true;
  }

  function oldPic(){
    document.pic.src = image[0].src; 
    return true;
  }

CSS:

#rollover {
  display: block;
  z-index:99;
  padding: 4px;
  position:relative;
  text-align:left;
  width:48px;
  background-color:#E8E8E8;
  opacity:1.0;
  filter:alpha(opacity=100); 
}
4

4 回答 4

1

您可以添加如下内容:

#Text {
    position:absolute;
    top:48px;
}

您的文本位于 ID 的块元素中Text更新了小提琴

于 2013-01-21T16:21:50.927 回答
1

CSSplay 偷来的 - 放大,你可以在没有 Javascript 的情况下做到这一点

HTML:

<tr>
    <td colspan=2>
        <p align="center">  <a class="rollover" href="contactdetail.php">
            <img src="http://womeninbiznetwork.com/wp-content/uploads/2011/07/logo-google.thumbnail.gif" name="pic" border="0"/>
            <span><img src="http://www.google.com/intl/en_ALL/images/logos/images_logo_lg.gif"/></span>
</a> 
        </p>
    </td>
</tr>
<tr>
    <td>Here is text</td>
</tr>

CSS:

a.rollover {
    display: block;
    position: relative;
}
a.rollover span {
    position: absolute;
    left: -10000px;
}
a.rollover:hover span {
    position: absolute;
    left: 200px;
}

JSFiddle

更新

我不知道,如果这是您的想法,但是您可以将较大的图像放置在您想要的任何位置

CSS:

a.rollover:hover span {
    position: absolute;
    left: 120px;
    top: -20px;
}

JSFiddle

如果要在悬停时隐藏下部图像,可以尝试添加opacity: 0

<img class="thumbnail" src="...">

a.rollover:hover .thumbnail {
    opacity: 0;
}

JSFiddle

虽然,我不知道这是否适用于每个浏览器。

于 2013-01-21T16:32:13.620 回答
1

一种方法是克隆<img>您想要的所有节点,将它们放在<div>s 中,然后使用 CSS:hover为您完成其余的工作。例如小提琴
我的代码可以<img>在文档中的任何位置使用任意数量的 s,并且不需要固定大小的父节点。
如果由于 JavaScript 对 HTML 结构的更改导致其他样式不符合您的预期,您可能需要修改您的 CSS 或我选择的类名(请参阅下面的“生成的 HTML”)。

// JavaScript
window.onload = function () { // when document has loaded, consider `window.addEventListener('load', /* code */, false);` in real world usage
    var elm = document.querySelectorAll('img.rollover'), // get all <img>s with class "rollover"
        i = elm.length, d;
    while (--i >= 0) { // put each one and a clone into a <div> where it was
        d = elm[i].parentNode.insertBefore(document.createElement('div'), elm[i]);
        d.className = 'rollover';
        elm[i].className = (' '+elm[i].className+' ') // set class'
                            .replace(/ rollover /g, ' ')
                            .slice(1, -1);
        d.appendChild(elm[i]);
        d.appendChild(elm[i].cloneNode()).className += ' rollover_big'; // I did clone here to save needing an extra variable
        elm[i].className += ' rollover_small';
    }
};

/* CSS */
div.rollover {position: relative; display: block;} /* relative to allow for abs. positioning of big image */
div.rollover img.rollover_small {width: 24px;}
div.rollover img.rollover_big { /* position over small image*/
    width: 48px;
    display: none;
    position: absolute;
    top: 0px;
}

div.rollover:hover img.rollover_small {visibility: hidden;} /* visibility to hold space*/
div.rollover:hover img.rollover_big {display: block;} /* show bigger node*/

<!-- HTML -->
<table>
    <tr>
        <td colspan=2><a href="contactdetail.php"><img src="http://womeninbiznetwork.com/wp-content/uploads/2011/07/logo-google.thumbnail.gif" class="rollover"/></a></td>
    </tr>
    <tr>
        <td>Here is text</td>
    </tr>
    <!-- etc. -->
</table>

<!-- Resulting HTML after load event -->
<table>
    <tr>
        <td colspan=2><a href="contactdetail.php">
            <div class="rollover">
                <img src="http://womeninbiznetwork.com/wp-content/uploads/2011/07/logo-google.thumbnail.gif" class="rollover_small"/>
                <img src="http://womeninbiznetwork.com/wp-content/uploads/2011/07/logo-google.thumbnail.gif" class="rollover_big"/>
            </div>
        </a></td>
    </tr>
    <tr>
        <td>Here is text</td>
    </tr>
    <!-- etc. -->
</table>
于 2013-01-21T16:39:30.733 回答
1

你不需要javascript。请参阅jsFiddle 上的工作演示
CSS做:

td.imgCell {
    height: 40px; /* a value greater than image height + paddings */
    text-align: center;
}

img.rollover {
    display: inline-block;
    position: relative;
    padding: 4px;
    width: 24px;
    height: 24px;
    background-color:#E8E8E8;
    border: 0px none;
}

img.rollover:hover {
    position: absolute;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    margin-left: -24px;
    z-index: 99;
}

这是修改后的HTML

<table>
    <tr>
        <td class="imgCell">
            <a href="contactdetail.php">
                <img class="rollover" src="http://womeninbiznetwork.com/wp-content/uploads/2011/07/logo-google.thumbnail.gif" />
            </a> 
        </td>
    </tr>
    <tr>
        <td>Here is text</td>
    </tr>
</table>

请注意,容器 td 的类也被声明和设置:<td class="imgCell">

关键点:

  • 容器<td>应该有一个固定的高度。
  • absolute悬停时图像应该有位置。

其他更正/建议:

  • 您的 HTML 中不需要该colspan属性。colspan 属性定义了一个单元格应该跨越的列数。您不必这样做,因为<td>每行 ( <tr>) 中都有一个。
  • 你真的不需要<p>围绕你的锚标签的包装标签。但这并没有错。

如果你坚持使用那个 JS 代码;

  • 您还应该在标签//-->之前包含,因为您一开始就有。</script><!-- hide from non JavaScript Browsers
  • 您应该在每个 javascript 语句的末尾添加分号。你没有。
  • 您应该使用 a 声明 image 变量var,否则它将在全局范围内。
  • 您应该使用[]而不是new Array()像 jsLint 这样的工具来初始化数组。
于 2013-01-21T16:40:19.127 回答