码迷,mamicode.com
首页 > 其他好文 > 详细

伪类的使用--鼠标悬浮效果

时间:2018-07-04 16:06:31      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:背景   http   图片   margin   gif   鼠标   opened   效果   idt   

1:hover的使用

技术分享图片

1-1 悬浮显示div中的内容

css:代码

技术分享图片
.center{
    position: absolute;
    right: 60px;
    width: 306px;
    height: 318px;
    box-shadow: 0 8px 16px 0 rgba(7,17,27,.2);
    z-index: 1000;
    display: none;
    border: 1px solid red;
    background-color: white;
    border-bottom-left-radius: 8px;
}

.personal-one:hover .center{
    display: block;
}
View Code

1-2 悬浮改变 center-l 的背景颜色

css:代码

技术分享图片
.center-l{
    float: left;
    width: 128px;
    height: 36px;
    /*border: 1px solid red;*/
    margin-left: 15px;
    text-align: center;
    background-color:#f8efc0;
}


.center-l:hover {
    cursor:hand;
    background: #8c8c8c;
}
View Code

 

伪类的使用--鼠标悬浮效果

标签:背景   http   图片   margin   gif   鼠标   opened   效果   idt   

原文地址:https://www.cnblogs.com/dw3306/p/9263409.html

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