微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

css3叮当猫怎么画

CSS3叮当猫怎么画?不用担心,下面是一份详细的教程帮助你快速实现。

.dingdang {
    width: 200px;
    height: 150px;
    position: relative;
    border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
    background-color: #f3c66d;
    border: 5px solid #f6ab6c;
    Box-shadow: 5px 5px 0 #5677fc,10px 10px 0 #73b3f3,15px 15px 0 #f0d9b5,20px 20px 0 #f5d69f,25px 25px 0 #f6ab6c,30px 30px 0 #f6877c;
} 

.dingdang:after {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    left: 70px;
    top: 30px;
}

.dingdang:before {
    content: "";
    width: 8px;
    height: 25px;
    display: block;
    position: absolute;
    background-color: #333;
    right: 40px;
    top: 20px;
    border-radius: 5px;
    transform: rotate(-45deg);
}

.dingdang .eyes {
    width: 30px;
    height: 35px;
    position: absolute;
    top: 35px;
    left: 50px;
    transform: rotate(-5deg);
    background-color: #fff;
    border: 5px solid #f6ab6c;
    border-radius: 50%;
    z-index: 1;
}

.dingdang .eyes:before {
    content: "";
    width: 10px;
    height: 15px;
    display: block;
    position: absolute;
    background-color: #333;
    border-radius: 50%;
    left: 5px;
    top: 5px;
}

.dingdang .eyes:after {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    right: 5px;
    top: 5px;
}

.dingdang .whiskers {
    position: absolute;
    top: 75px;
    left: 8px;
    z-index: 1;
}

.dingdang .whiskers:before,.dingdang .whiskers:after {
    content: "";
    width: 50px;
    height: 5px;
    display: block;
    position: absolute;
    background-color: #663300;
    top: 0;
}

.dingdang .whiskers:before {
    transform: rotate(20deg) translate(10px,-5px);
}

.dingdang .whiskers:after {
    transform: rotate(-20deg) translate(10px,5px);
}

css3叮当猫怎么画

在这里,我们使用了众多CSS3特性来制作这个可爱的叮当猫。例如,border-radius使得我们可以轻松地添加圆形的边角,Box-shadow给了我们更灵活的投影效果,而transform则使得我们可以对元素进行旋转和倾斜。

如果你愿意,你可以改变颜色、位置、大小、角度等等来创造属于自己的猫咪,让它成为你站点的一道亮丽的风景线。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。