0

我希望两者都表现得像 webkit,但出于某种原因,webkit 的工作方式与我预期的一样,但是 -moz- 在鼠标移出 .porftolio 项目时会执行动画,

知道为什么吗?

CSS:

.portfolio-item {
  float: left;
  width: 300px;
  height: 300px;
  margin: 0.5%;
  position: relative;
  text-align: center;
  background: orange;
  overflow: hidden;
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.portfolio-item a:hover:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.4), transparent 100%);
}
.portfolio-item h4, .portfolio-item img {
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.portfolio-item img {
  width: 100%;
  hegight: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.portfolio-item:before {
  content: '';
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  height: 100%;
  vertical-align: middle;
}
.portfolio-item h4 {
  opacity: 0;
  color: white;
  font-size: 30px;
  vertical-align: middle;
  /*@include transform(scale(.5));*/
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  /* sino en safari no va */
  width: 200px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transform: translateX(-2px);
  -moz-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
}
.portfolio-item:hover {
  z-index: 9;
}
.portfolio-item:hover img {
  opacity: 0;
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}
.portfolio-item:hover h4 {
  -webkit-transform: translateX(3px);
  -moz-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
  /*-webkit-animation-duration: 0.4s;
  -webkit-transform-origin:50% 50%;
  -webkit-animation-timing-function: linear;
  -moz-animation-duration: 0.4s;
  -moz-transform-origin:50% 50%;
  -moz-animation-timing-function: linear;
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;*/
  opacity: 1;
}

HTML:

<ul><li class="portfolio-item"  style="background-color: #6220E5;">
                                <a href="#">
                                    <img src="http://dummyimage.com/300x300/dddddd/cccccc" alt="camper" />
                                    <h4>Text goes here</h4>
                                </a>
</li></ul>

测试:http: //jsfiddle.net/kuX39/

-编辑-

有趣的是,我注意到如果不是将它应用到 :hover 我将它应用到 .hover 并切换类,那么动画效果相同......:S

4

1 回答 1

1

问题来自这个规则:

.portfolio-item a:hover:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.4), transparent 100%);
}

您仅在悬停状态下定义所有 after 伪元素。如果 a 元素没有悬停,则伪元素未定义,并且可以采用浏览器决定的任何值。

如果您在未悬停的元素上设置相同,它工作正常。

.portfolio-item a:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.4), transparent 100%);
}

更新的演示

顺便说一句,我的 Firefox 版本使用的是过渡而不是 moz-transition

于 2013-07-10T17:41:39.257 回答