当前位置: 首页 > article >正文

HTML 实现炫酷选项卡效果

在前端开发中,创造出吸引人的交互效果能够极大地提升用户体验。今天,我将分享一段使用 HTML 和 CSS 实现的炫酷选项卡代码,并详细介绍其实现过程。

一、效果展示

我们的选项卡效果具有以下特点:

  1. 整体布局美观大方,页面居中显示。
  2. 选项卡标签颜色鲜艳,分别为紫色(#a55eea)、蓝色(#45aaf2)和绿色(#26de81),且带有圆角边框和白色文字,鼠标悬停时透明度变为 0.7,增加交互反馈。
  3. 选项卡内容区域背景与对应标签颜色一致,通过 3D 旋转效果切换不同的内容,过渡时间为 3 秒,给人一种流畅的视觉感受。

 HTML

这里使用了一个容器 div 来包裹选项卡的各个部分。容器内包含三个单选按钮用于切换选项卡,一个选项卡内容区域 tab_body 和一个标签区域 label。每个标签对应一个单选按钮,用于触发选项卡内容的切换。

<div class="container">
    <input type="radio" name="aa" id="item1">
    <input type="radio" name="aa" id="item2">
    <input type="radio" name="aa" id="item3">

    <div class="tab_body">
        <div class="tab_content">
            <h3>top content</h3>
            <p>this is top content</p>
        </div>
        <div class="tab_content">
            <h3>top content</h3>
            <p>this is middle content</p>
        </div>
        <div class="tab_content">
            <h3>top content</h3>
            <p>this is bottom content</p>
        </div>
    </div>
    <div class="label">
        <label for="item1">top</label>
        <label for="item2">middle</label>
        <label for="item3">bottom</label>
    </div>
</div>

CSS

* {
    padding: 0;
    margin: 0;
}
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    width: 700px;
    height: 350px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    perspective: 1300px;
}
input {
    display: none;
}
.container.tab_body {
    width: 500px;
    height: 300px;
    background: pink;
    position: relative;
    transform-style: preserve-3d;
    transition-duration: 3s;
}
.container.label {
    width: 150px;
    height: 350px;
}
.container.label label {
    display: block;
    width: 150px;
    height: 100px;
    margin: 5px 0px 20px;
    background: #a55eea;
    text-align: center;
    line-height: 100px;
    color: #ffffff;
    border-radius: 70px;
}
.container.label label:hover {
    opacity: 0.7;
    cursor: pointer;
}
.container.label label:nth-child(2) {
    background: #45aaf2;
}
.container.label label:nth-child(3) {
    background: #26de81;
}
.container.tab_body.tab_content {
    width: 100%;
    height: 100%;
    background: #a55eea;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: absolute;
}
.container.tab_body.tab_content:nth-child(1) {
    background: #a55eea;
    transform: translateY(-150px) rotateX(90deg);
}
.container.tab_body.tab_content:nth-child(2) {
    background: #45aaf2;
    transform: translateZ(150px);
}
.container.tab_body.tab_content:nth-child(3) {
    background: #26de81;
    transform: translateY(150px) rotateX(-90deg);
}
#item1:checked ~.tab_body {
    transform: rotateX(-90deg);
}
#item2:checked ~.tab_body {
    transform: rotateX(0deg);
}
#item3:checked ~.tab_body {
    transform: rotateX(90deg);
}


http://www.kler.cn/a/286973.html

相关文章:

  • 【cuda学习日记】3.3 CUDA执行模型--展开循环
  • 步入响应式编程篇(二)之Reactor API
  • JavaScript笔记基础篇03——函数
  • 【Python项目】小区监控图像拼接系统
  • 系统思考—转型
  • 学习ASP.NET Core的身份认证(基于JwtBearer的身份认证7)
  • 大道至简 以量取胜
  • 第十五章 rust中进行windows系统开发
  • 北京市公共资源交易中心到访隆道调研交流
  • 封装_私有类字段和方法
  • LabVIEW与Python联合图像处理
  • [知识分享]华为铁三角工作法
  • 交换机攻击了解
  • Redis windows 指定端口的方式启动
  • PHP动物收容所管理系统-计算机毕业设计源码94164
  • uniapp video标签无法播放视频
  • 微软CEO谈AI平台范式转移、AI发展趋势及资本市场动态
  • milvus使用milvus migration工具迁移数据
  • 【c++】通过类来玩转赋值操作“延迟赋值”
  • UE5游戏——显示打击怪物的伤害值显示
  • linux 工作中常用的命令
  • 2024.08.25 校招 实习 内推 面经
  • C++基础面试题 | C++中static的作用?什么场景下会使用static?
  • Maven学习(零基础到面试)
  • C++学习笔记----5、重用之设计(四)---- 设计一个成功的抽象与SOLID原则
  • 【C++20】携程库基础知识