菜单悬停过渡效果从左到右css

时间:2013-06-06 05:58:20

标签: css css3

我使用过渡属性将鼠标从上到下滑动到背景图像上。

的CSS:

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

如何从左到右更改过渡效果?

1 个答案:

答案 0 :(得分:0)

HTML:

<div class="a"></div>

的CSS:

.a {
    background:url(http://a.static.trunity.net/images/132364/500x0/scale/butterfly-2.jpg) no-repeat;
    background-position:left top;
    display:block;
    width:400px;
    height:300px;
}

.a:hover {
    background-position:400px top;
    -webkit-transition:all 1s linear;
}

你可以看到它适用于jsfiddle http://jsfiddle.net/bSyvP/1/