CSS3 IOS7 状态栏是一种视觉效果,它可以模拟苹果IOS7状态栏风格,让网页更加的逼真。下面我们将介绍一些实现的方法。
/*设置状态栏高度*/ .statusbar { height: 20px; } /*设置状态栏背景色*/ .statusbar { background-color: #1d1d1d; } /*设置信号强度和电池电量*/ .statusbar .signal::before { content: ""; position: absolute; left: 5px; top: 50%; transform: translateY(-50%); width: 4px; height: 9px; background: #fff; border-radius: 2.5px; } .statusbar .battery::after { content: ""; position: absolute; right: 5px; top: 50%; transform: translateY(-50%); width: 12px; height: 5px; border: 1px solid #fff; border-radius: 2.5px; } /*设置时间*/ .statusbar .time { position: absolute; width: 40px; height: 20px; right: 5px; top: 0; font-size: 12px; text-align: center; line-height: 20px; color: #fff; }