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

png格式的img元素直接设置背景色、border-radius等属性,不需再包裹div造成冗余

时间:2018-01-08 23:49:09      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:ram   margin   :hover   use   元素   animation   order   完全   img   

技术分享图片

原html结构

<div class="user-inform">
       <div class="user-img">
              <img src="http://coding.imweb.io/img/project/resume/avatar.png" alt="简历头像">
        </div>
</div>

原css结构

.user-inform .user-img {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #88bde8;
}

.user-inform .user-img:hover {
    animation: circleRun 1s ease infinite;
}
@keyframes circleRun {
    0% {
        box-shadow: 0 0 0 5px #88bde8;
    }
    50% {
        box-shadow: 0 0 5px 10px #88bde8;
    }
    100% {
        box-shadow: 0 0 0 5px #88bde8;
    }
}
.user-inform .user-img img{
    position: absolute;
    width: 120px;
    height: 115px;
}

得到老师的建议是,img是png格式的,所以完全可以设置img的背景色,以及border-radius,不需要在外面包裹div来做这些。

修改后的html结构

<div class="user-inform">
        <img src="http://coding.imweb.io/img/project/resume/avatar.png" alt="简历头像">
</div>

修改后的cssl结构

.user-inform img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px #88bde8;
}
.user-inform img:hover {
    animation: circleRun 1s ease infinite;
}
@keyframes circleRun {
    0% {
        box-shadow: 0 0 0 5px #88bde8;
    }
    50% {
        box-shadow: 0 0 5px 10px #88bde8;
    }
    100% {
        box-shadow: 0 0 0 5px #88bde8;
    }
}

 

png格式的img元素直接设置背景色、border-radius等属性,不需再包裹div造成冗余

标签:ram   margin   :hover   use   元素   animation   order   完全   img   

原文地址:https://www.cnblogs.com/chivasknight/p/8245437.html

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