如何在不移动其他div的情况下在悬停时放大div

时间:2013-03-16 22:00:38

标签: html css z-index css-position

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

我不完全确定如何在此处发布代码,以便...我的网站(和代码问题)可以查看here

这是我第一次在这里发帖。谢谢你的指示。这是代码......

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;
}

2 个答案:

答案 0 :(得分:1)

在你想要实现的例子中......同一张照片有两个div 一个“常规”和一个“悬停”仅在悬停时出现 这个隐藏的一个作为z-index为2并显示在第一个...给出了一个resising div的印象。但事实并非如此 ;)

===
编辑: 好的Ryh,看到这个开始我在这里为你做了...
没有jQuery,你就不会有像fadein / fadeout这样的“闪亮效果”...... 但是,这样做可能是一种选择:

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做这件事,那就是一个开始。

答案 1 :(得分: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;}