码迷,mamicode.com
首页 > Web开发 > 详细

css hover dropdown

时间:2018-11-05 20:48:27      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:anim   box   css   html   mes   line   nbsp   hover   key   

html--------------------------

<div class="dropdown">
<span>鼠标移动到我这!</span>
  <div class="dropdown-content">
  <p>home</p>
  <p>home1</p>
  </div>
</div>

 

css---------------------------

.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 12px 16px;
animation:myfirst 5s;
-webkit-animation:myfirst 5s; /* Safari and Chrome */
}
.dropdown:hover , .dropdown-content {
display: block;
animation:myfirst 1s;
}

@keyframes myfirst
{
from {background: red;}
to {background: yellow;}
}

@-webkit-keyframes myfirst /* Safari 与 Chrome */
{
from {background: red;}
to {background: yellow;}
}

css hover dropdown

标签:anim   box   css   html   mes   line   nbsp   hover   key   

原文地址:https://www.cnblogs.com/JamyWong/p/9911281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!