0

我正在尝试创建一个简单的动画,当用户将鼠标悬停在一个元素上时,其中包含的另一个元素会填充其父元素。目前,我有一个 JSFiddle 可以做到这一点。

但是,我想用其他一些我不确定我是否可以在 CSS3 中真正做到的功能来完成这个。

  1. 我试图找到一种方法,在让内圈完全填充其父级后(即当它的宽度/高度 = 300px 时),我希望填充暂停并且在动画完成后不会消失。

  2. 当用户将鼠标移到 :hover 范围之外时,我希望动画反转方向而不是突然停止。

我已经用 CSS3 做到了这一点,但我不确定我是否可以在不求助于 Javascript 的情况下实现这两个功能。有谁知道完全在 CSS3 中执行此操作的方法/有没有人知道是否可以在 CSS3 中执行这最后两个功能,因为我似乎找不到任何东西。

.circle {
        width: 300px;
        height: 300px;
        background-color: white;
        border: 1px solid #000000;
        overflow: hidden;

        border-radius: 150px;
        -moz-border-radius: 150px;
        -webkit-border-radius: 150px;
}

.filler {
        width: 0px;
        height: 0px;
        background-color: red;
        border: none;
        position: relative;
        left: 50%;
        top: 50%;

        border-radius: 150px;
        -mox-border-radius: 150px;
        -webkit-border-radius: 150px;

        animation: empty 1s;
}

.circle:hover .filler {
        animation: fill 2s;
        -moz-animation: fill 2s;
        -webkit-animation: fill 2s;
        background-color: blue;
}

@keyframes fill
      {
        from   {background: red; height: 0px; width: 0px;}
        to {background: green; height: 300px; width: 300px; top: 0%; left: 0%;}
      }

      @-moz-keyframes fill /* Firefox */
      {
        from   {background: red; height: 0px; width: 0px;}
        to {background: green; height: 300px; width: 300px; top: 0%; left: 0%;}
      }

      @-webkit-keyframes fill /* Safari and Chrome */
      {
        from   {background: red; height:0px; width:0px;}
        to {background: green; height: 300px; width: 300px; top: 0%; left: 0%;}
      }

      @keyframes empty
      {
        to {background: red; height: 0px; width: 0px; top: 50%; left: 50%;}
      }
      @-moz-keyframes empty
      {
        to {background: red; height: 0px; width: 0px; top: 50%; left: 50%;}
      }
      @-webkit-keyframes empty
      {
        to {background: red; height: 0px; width: 0px; top: 50%; left: 50%;}
      }

JS小提琴

4

2 回答 2

5

这个简单的动画不需要关键帧。这是您需要的CSS:

.circle {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: white;
  border: 1px solid #000000;
  border-radius: 150px;
  overflow: hidden;
}

.filter {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: red;
  border-radius: 0px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.circle:hover .filter {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 150px;
  background-color: blue;
}

和 HTML:

<div class="circle">
  <div class="filter"></div>
</div>

这是一个例子:http: //jsbin.com/agekef/1/edit

于 2013-04-05T06:46:49.533 回答
0

我希望你可以试试这个链接可能会帮助你

<http://jsfiddle.net/spacebeers/sELKu/3/>
<http://jsfiddle.net/SZqkb/1/>
<http://css-tricks.com/examples/DifferentTransitionsOnOff/>

谢谢

于 2013-04-05T05:47:04.840 回答