HTML仿iOS App Store底部Tab栏示例代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>iOS App Store Tab Bar</title>
<style>
/* Reset default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
<pre><code> /* Style for the tab bar container */
.tab-bar {
display: flex;
justify-content: space-around;
align-items: center;
height: 60px;
background-color: #fafafa;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
}
/* Style for the tab bar items */
.tab-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 33.33%;
color: #777;
font-size: 12px;
text-align: center;
cursor: pointer;
}
/* Style for the active tab item */
.active {
color: #007aff;
}
</style>
</code></pre>
</head>
<body>
<div class="tab-bar">
<div class="tab-item active">
<span class="icon"></span>
<span class="label">Tab 1</span>
</div>
<div class="tab-item">
<span class="icon"></span>
<span class="label">Tab 2</span>
</div>
<div class="tab-item">
<span class="icon"></span>
<span class="label">Tab 3</span>
</div>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/oiBx 著作权归作者所有。请勿转载和采集!