0

我正在尝试创建从白色背景到图像背景的过渡。这样,当查看者将鼠标悬停在某个部分上时,它会从普通变为样式。

这是我当前的代码:

div.camp {
     background: #FFFFFF;
      border: 1px solid #CCCCCC; 
      border-radius: 8px; 
     padding: 8px; 
      transition: all 1s linear 0s;
  }
div.camp:hover {
      background: #EFFFD5 url("http://www.alpinejosh.com/host/sp/images/camp.png"); 
        background-position: center bottom; 
       background-repeat: repeat-x; 
    border: 1px solid #CECECE;
  }

这是此代码所在的页面: http: //www.summitpost.org/eldorado-peak/150316#chapter_7

据我了解,背景颜色过渡很容易。但似乎不支持背景图像进行过渡。

4

2 回答 2

4

不幸的是,您不能以您指定的方式在背景图像上使用过渡。您可以在此处查看 W3C 动画属性类型列表

您可以将白色背景放在顶部,然后在悬停时为其不透明度设置动画(以显示下方的图像)。

代码示例

你显然可以让这个更漂亮。我只是拼凑一些东西给你一个想法。

div.camp {
  border: 1px solid #CCCCCC; 
  background: #EFFFD5 url("http://www.alpinejosh.com/host/sp/images/camp.png"); 
  background-position: center bottom; 
  background-repeat: repeat-x; 
  border-radius: 8px; 
  position: relative;
}

div.camp-overlay {
  padding: 8px;
  border-radius: 8px;
  position: absolute;
  z-index:50;
  width: 100%;
  height: 100%;
  background:white;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

div.camp-overlay:hover {
  background: rgba(255,255,255,0);  /* use opacity for older browsers*/
}​​​​​​​​​​​​​

上述 CSS 的 HTML

<div class="camp">
    <div class="camp-overlay"></div>
</div>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

以上的JSFiddle

http://jsfiddle.net/p7mcy/

于 2012-12-18T07:47:43.543 回答
1

您可以做的是制作两个 div 元素,一个在另一个之上,然后在悬停时将顶部 div 淡出。

<div class="wrapper">
    <div class="image"></div>
    <div class="white-bg"></div>
</div>

.wrapper{position:relative;}
.image, .white-bg{position:absolute; top:0; left:0; width:100px; height:50px;}
.image{background:red;}
.white-bg{background:white; z-index:9999; -webkit-transition:opacity 0.3s linear; opacity:1;}
.white-bg:hover{opacity:0;}​

应该工作小提琴:http: //jsfiddle.net/b46z8/5/

于 2012-12-18T07:56:32.070 回答