1

我希望实现像这样的悬停效果,其中图像放大但不会取代周围的 div。我已经通过分配相对和绝对定位以及 z-index 看到了这一点,但这对我不起作用。也许我将这些值分配给了错误的类。我的代码如下...任何帮助表示赞赏

我不完全确定如何在这里发布代码,所以......我的网站(和代码问题)可以在这里查看

这是我第一次在这里发帖。感谢您的指导。这是代码...

HTML:

<div class="products-container">
   <div class="products-container-inner">
      <div class="item">
      <div class="item">
      <div class="item">
      <div class="item">

CSS:

div.item {
    height: 135px;
    width: 150px;
    margin: 10px;
    display: inline-block;
    float: left;
}

div.item:hover {
    border: none; float: left;
    height: 280px;
    width: 280px;
    background-color: #ffffff;
    -moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    -ms-transition: .2s ease;
    transition: .2s ease;
}

div.products-container-inner {
    margin: auto;
    width: 100%;
    border: none;
    padding: 10px;
    overflow: hidden;
}

div.item .product-name {
    text-align: center;
    display: none;
}

div.item:hover .product-name {
    text-align: center;
    display: block;
}

div.item .price-box {
    text-align: center;
    display: none;
}

div.item:hover .price-box {
    text-align: center;
    display: block;
}

div.item .btn {     
    background-color: #EE432E;
    background-image: -moz-linear-gradient(center top , #EE432E 0%, #C63929 50%, #B51700 50%, #891100 100%);
    border: 1px solid #951100;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 0 1px rgba(255, 115, 100, 0.4) inset, 0 1px 3px #333333;
    color: #FFFFFF;
    font: normal 16px/1 "helvetica neue",helvetica,arial,sans-serif;
    padding: 3px 0;
    float: left;
    margin-left: 65px;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    width: 150px;
    display: none;
}

div.item:hover .btn {
    text-align: center;
    display: block;
    background-color: #F37873;
    background-image: -moz-linear-gradient(center top , #F37873 0%, #DB504D 50%, #CB0500 50%, #A20601 100%);
    cursor: pointer;
}

div.item:active .btn {
    background-color: #D43C28;
    background-image: -moz-linear-gradient(center top , #D43C28 0%, #AD3224 50%, #9C1500 50%, #700D00 100%);
    box-shadow: 0 0 0 1px rgba(255, 115, 100, 0.4) inset;
}
4

2 回答 2

1

在您要实现的目标的示例中...同一张图片有两个 div。
一个“常规”和一个仅在悬停时出现的“悬停”。
这个隐藏的 z-index 为 2,并显示在第一个上……这给人一种调整 div 的印象。但事实并非如此。
;)

===
编辑:好的,Ryh,看看我在这里为你做的这个开始......
没有jQuery,你将不会有任何“闪亮效果”,如淡入/淡出......
但是,它可能是一个选择像这样:

CSS:

  div.item {width:200px;}
  div.hover {display:none; position:relative; z-index:2; top:-200px; width:300px;}

  // The top:-200px is to move the big image up... depends on the small pic height.
  // And the width are in fonction of the pics width.

HTML:

  <div class="item" id="img1" onmouseover="showbigger(this.id);">
  <img src="something.jpg" style='width;200px; height:200px; border:1px solid black;'>
  </div>

  <div class="hover" id="img1big" onmouseout="shownormal(this.id);">
  <img src="something-bigger.jpg" style='width;300px; height:300px; border:1px solid black;'>
  </div>

  <script>
  function showbigger(ref){
  document.getElementById(ref+'big').style.display='inline';
  }

  function shownormal(ref){
  document.getElementById(ref).style.display='none';
  }
  </script>

您将不得不在定位和图片尺寸方面发挥一些作用。
这可能不是一个完美的解决方案……但如果你想用 JavaScript 来做这件事,这是一个开始。

于 2013-03-16T22:20:35.920 回答
0

超链接的 HTML:

<a href="/index.html"  onclick="createPopup">Click Here</a>

CSS

a{text-decoration: none;
  position: fixed;
  color: #0000ff;
}

a:hover { text-decoration: initial;
    color: #ff0000;     
}

a:visited {color: #b200ff;}
于 2013-03-16T22:35:31.820 回答