本教程操作环境:Windows10系统、CSS3版、DELL G3电脑
css怎么实现反转180?
CSS3只让背景图片旋转180度
CSS3旋转背景图片
最近写驾驶舱的时候琢磨了一个问题,就是单纯的使背景图片旋转的一定的角度。
只通过CSS3的transfrom让整个容器都翻转了一定的角度,达不到我想要的效果。
然后通过研究和参考相关文章总算实现了这个效果,话不多说,上代码。
代码实现
HTML模板如下
<div class="smart_development_right">
<div class="smart_development_content">
<span>智能感知设备</span>
</div>
<div class="smart_development_content">
<span>在线率</span>
</div>
</div>
CSS代码
.smart_development_right{
position: relative;
overflow: hidden;
}
.smart_development_right::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
background: url('/public/smart_equipment.png') 0 0 no-repeat;
transform: rotate(180deg);
}
如果思路走的对,那么实现起来就会非常简单。
以上就是css怎么实现反转180的详细内容,更多请关注编程网其它相关文章!