CSS实现的鼠标悬停触发显示隐藏DIV元素

所属分类: 网页特效-动画效果    2024-01-14 09:23:28

CSS实现的鼠标悬停触发显示隐藏DIV元素 ie兼容6
反馈问题  查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

CSS实现的鼠标悬停触发显示隐藏DIV元素(共4个文件)

    • index.html

使用方法

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #eee;
  font-family: "Roboto", sans-serif;
  background: #dfe4ea;
}
body .container {
  width: 300px;
  font-size: 1.2em;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
body .container .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0px 20px;
  transition: all 0.3s;
  color: white;
}
body .container .box.box1 {
  background-color: #7986CB;
}
body .container .box.box2 {
  background-color: #FF8A65;
}
body .container .box.box3 {
  background-color: #F06292;
}
body .container .box.box4 {
  background-color: #4DB6AC;
}
body .container .box .name {
  order: -1;
}
body .container .box .name h4, body .container .box .name h5 {
  font-weight: 300;
}
body .container .box .name h5 {
  font-size: 0em;
  line-height: 1.5;
}
body .container .box:before {
  content: "";
  height: 0px;
  width: 0px;
  border: 2px solid white;
  border-radius: 50%;
  margin-right: -50%;
  background-color: white;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
body .container .box.box1:before, body .container .box.box3:before {
  background-image: url("../img/011-girl.png");
}
body .container .box.box2:before, body .container .box.box4:before {
  background-image: url("../img/163807.png");
}
body .container .box:hover:before {
  content: "";
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 0%;
  transition: all 0.4s;
}
body .container .box:hover {
  height: 120px;
  transition: all 0.3s;
}
body .container .box:hover .name h5 {
  font-size: 0.7em;
  transition: all 0.6s;
}

站长提示:
1. 平台上所有素材资源,需注册登录会员方能正常下载。
2. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励20K币
3. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
4. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 动画效果

jquery+CSS函数生成渐变动画背景插件

一款采用CSS函数自动生成渐变背景,带平滑的淡出淡入的动画变色特效。
  动画效果
 175  

jquery支持在线编辑连续动画在线播放特效代码

一款鼠标拖动元素在线编辑连续动画特效插件,使用了JavaScript和CSS样式将可控的连续动画应用于单个或多个元素。
  动画效果
 182  

jquery跟随鼠标转动的眼睛特效代码

一款跟随鼠标轨迹转动的眼睛特效插件,根据鼠标的移动坐标轨迹转动眼珠子,非常的赞。
  动画效果
 160  

jquery文本文字自定义闪烁变色动画特效代码

一款轻量级文本文字闪烁动画插件,可针对文本文字自定义的眨眼/闪光动画,可设置闪烁颜色、闪烁次数。
  动画效果
 277  

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论