0

所以这就是我所做的,现在我需要为过渡设置动画,所以它几乎从 100x100 开始并以 900x300(宽度x高度)结束

<b> title </b>
<ol>
    <li> list </li>
</ol>

当我将鼠标悬停在 b 上时,它会向我显示有序列表。到目前为止一切都很好。但我似乎无法像所有其他元素一样获得动画效果

ol
{   width: 100px; height: 100px;   
transition: all  3s; 
-webkit-transition: all 3s;
}

b.title
{
   background-color: #000000; 
} 

b.title:hover + ol 
{
 width: 925px;
 height: 160px; 
 display: block; 
}

我该如何解决?我究竟做错了什么?

***我知道使用 B 标签不是最好的,但我被认为是我唯一的选择。

4

2 回答 2

1

如果您将类放在正确的元素上,则过渡有效。

改变这个:

<b> title </b>

对此:

<b class="title"> title </b>
于 2013-10-13T19:07:00.817 回答
1

HTML

     <b class="title">title</b>
     <ol>
         <li>List</li>
     </ol>

CSS

     ol{
     width:100px;
     height:100px;
     -webkit-transition: all 3s linear;
     -moz-transition: all 3s linear;
     -o-transition: all 3s linear;
      transition: all 3s linear;
     }

     .title:hover{
     display:block;
     width:925px;
     height:160px;
     }

最好先列出 css3 属性的所有浏览器前缀,然后才是实际属性。

于 2013-10-14T20:09:39.060 回答