资讯专栏INFORMATION COLUMN

CSS实现Tab布局

morgan / 3200人阅读

摘要:一布局方式内容与分离内容内容内容内容内容内容内容内容内容与一体利用负,将内容区对齐,然后内容去添加背景色,避免不同对应的区域透视重叠。二实现交互锚点实现针对布局一从上往下排列,父元素加上。

一、布局方式 1、内容与tab分离

</>复制代码

  1. 内容1
  2. 内容2
  3. 内容3
  4. 内容4

</>复制代码

  1. ul,li{
  2. margin:0;
  3. padding:0;
  4. list-style:none;
  5. }
  6. .container{
  7. width:400px;
  8. height:300px;
  9. background-color:silver;
  10. }
  11. .tab-content{
  12. width:100%;
  13. height:80%;
  14. overflow:hidden;
  15. }
  16. .tab-content .item{
  17. width:100%;
  18. height:100%;
  19. }
  20. .tab-control{
  21. width:100%;
  22. height:20%;
  23. }
  24. .tab-control ul{
  25. height:100%;
  26. }
  27. .tab-control li{
  28. width:25%;
  29. height:100%;
  30. float:left;
  31. border:1px solid silver;
  32. box-sizing:border-box;
  33. background-color:white;
  34. cursor: pointer;
  35. }
  36. .tab-control li:hover{
  37. background-color:#7b7474
  38. }
  39. .tab-control a{
  40. display:inline-block;
  41. width:100%;
  42. height:100%;
  43. line-height:100%;
  44. text-align:center;
  45. text-decoration: none;
  46. }
  47. .tab-control a::after{
  48. content:"";
  49. display:inline-block;
  50. height:100%;
  51. vertical-align:middle;
  52. }
  53. .tab-content .item:target{
  54. background:yellow;
  55. }

2、内容与tab一体

</>复制代码

    • 1

    • 1

    • 2

    • 2

    • 3

    • 3

    • 4

    • 4

</>复制代码

  1. ul,li,p{
  2. margin:0;
  3. padding:0;
  4. list-style:none;
  5. }
  6. .container{
  7. width:400px;
  8. height:300px;
  9. background-color:silver;
  10. border:1px solid silver;
  11. }
  12. .container ul{
  13. width:100%;
  14. height:100%;
  15. overflow:hidden;
  16. }
  17. .container .item{
  18. float:left;
  19. width:25%;
  20. height:100%;
  21. background-color:white;
  22. }
  23. .container .item .title{
  24. line-height:40px;
  25. border:1px solid silver;
  26. box-sizing:border-box;
  27. text-align:center;
  28. cursor:pointer;
  29. }
  30. .container .item .content{
  31. width:400%;
  32. height:100%;
  33. background-color:yellow;
  34. }
  35. .ml1{
  36. margin-left:-100%;
  37. }
  38. .ml2{
  39. margin-left:-200%;
  40. }
  41. .ml3{
  42. margin-left:-300%;
  43. }
  44. .active{
  45. position:relative;
  46. z-index:1
  47. }
  48. .container .item:hover{
  49. position:relative;
  50. z-index:1
  51. }
  52. .container .item:hover .title{
  53. border-bottom:none;
  54. background-color:yellow;
  55. }

利用负margin,将内容区对齐,然后内容去添加背景色,避免不同tab对应的区域透视重叠。

二、CSS实现交互 1、锚点实现(target)

(1)针对布局一:item从上往下排列,父元素tab-content加上overflow:hidden。利用锚点,点击不同a标签的时候,具有对应ID的item会切换到tab-content的视图中,然后利用hover给tab按钮加上切换样式。

</>复制代码

  1. 内容1
  2. 内容2
  3. 内容3
  4. 内容4

</>复制代码

  1. ul,li{
  2. margin:0;
  3. padding:0;
  4. list-style:none;
  5. }
  6. .container{
  7. width:400px;
  8. height:300px;
  9. background-color:silver;
  10. }
  11. .tab-content{
  12. width:100%;
  13. height:80%;
  14. overflow:hidden;
  15. }
  16. .tab-content .item{
  17. width:100%;
  18. height:100%;
  19. }
  20. .tab-control{
  21. width:100%;
  22. height:20%;
  23. }
  24. .tab-control ul{
  25. height:100%;
  26. }
  27. .tab-control li{
  28. width:25%;
  29. height:100%;
  30. float:left;
  31. border:1px solid silver;
  32. box-sizing:border-box;
  33. background-color:white;
  34. cursor: pointer;
  35. }
  36. .tab-control li:hover{
  37. background-color:#7b7474
  38. }
  39. .tab-control a{
  40. display:inline-block;
  41. width:100%;
  42. height:100%;
  43. line-height:100%;
  44. text-align:center;
  45. text-decoration: none;
  46. }
  47. .tab-control a::after{
  48. content:"";
  49. display:inline-block;
  50. height:100%;
  51. vertical-align:middle;
  52. }

上述方法只是利用了锚点切换,没有使用:target。修改CSS

</>复制代码

  1. ul,li{
  2. margin:0;
  3. padding:0;
  4. list-style:none;
  5. }
  6. .container{
  7. width:400px;
  8. height:300px;
  9. background-color:silver;
  10. }
  11. .tab-content{
  12. position:relative;
  13. width:100%;
  14. height:80%;
  15. overflow:hidden;
  16. }
  17. .tab-content .item{
  18. position:absolute;
  19. left:0;
  20. top:0;
  21. width:100%;
  22. height:100%;
  23. }
  24. .tab-control{
  25. width:100%;
  26. height:20%;
  27. }
  28. .tab-control ul{
  29. height:100%;
  30. }
  31. .tab-control li{
  32. width:25%;
  33. height:100%;
  34. float:left;
  35. border:1px solid silver;
  36. box-sizing:border-box;
  37. background-color:white;
  38. cursor: pointer;
  39. }
  40. .tab-control li:hover{
  41. background-color:#7b7474
  42. }
  43. .tab-control a{
  44. display:inline-block;
  45. width:100%;
  46. height:100%;
  47. line-height:100%;
  48. text-align:center;
  49. text-decoration: none;
  50. }
  51. .tab-control a::after{
  52. content:"";
  53. display:inline-block;
  54. height:100%;
  55. vertical-align:middle;
  56. }
  57. .tab-content .item:target{
  58. z-index:1;
  59. background-color:yellow;
  60. }

item使用绝对定位,然后使用:target修改元素z-index达到切换效果(其实也可以通过控制元素的display来达到切换效果)

(2)针对布局二:

</>复制代码

</>复制代码

  1. ul,
  2. li,
  3. p {
  4. margin: 0;
  5. padding: 0;
  6. list-style: none;
  7. }
  8. .container {
  9. width: 400px;
  10. height: 300px;
  11. background-color: silver;
  12. border: 1px solid silver;
  13. }
  14. .container ul {
  15. width: 100%;
  16. height: 100%;
  17. overflow: hidden;
  18. }
  19. .container .item {
  20. float: left;
  21. width: 25%;
  22. height: 100%;
  23. background-color: white;
  24. }
  25. .container .item .title {
  26. line-height: 40px;
  27. border: 1px solid silver;
  28. box-sizing: border-box;
  29. text-align: center;
  30. cursor: pointer;
  31. }
  32. .container .item a {
  33. display:inline-block;
  34. width:100%;
  35. height:100%;
  36. text-decoration: none;
  37. }
  38. .container .item .content {
  39. width: 400%;
  40. height: 100%;
  41. background-color: yellow;
  42. }
  43. .ml1 {
  44. margin-left: -100%;
  45. }
  46. .ml2 {
  47. margin-left: -200%;
  48. }
  49. .ml3 {
  50. margin-left: -300%;
  51. }
  52. .active {
  53. position: relative;
  54. z-index: 1
  55. }
  56. .container .item:target {
  57. position: relative;
  58. z-index: 1
  59. }
  60. .container .item:target .title {
  61. border-bottom: none;
  62. background-color: yellow;
  63. }
2、hover实现

(1)针对布局一:
无法简单的通过CSS实现

(2)针对布局二:

</>复制代码

    • 1

    • 1

    • 2

    • 2

    • 3

    • 3

    • 4

    • 4

</>复制代码

  1. ul,li,p{
  2. margin:0;
  3. padding:0;
  4. list-style:none;
  5. }
  6. .container{
  7. width:400px;
  8. height:300px;
  9. background-color:silver;
  10. border:1px solid silver;
  11. }
  12. .container ul{
  13. width:100%;
  14. height:100%;
  15. overflow:hidden;
  16. }
  17. .container .item{
  18. float:left;
  19. width:25%;
  20. height:100%;
  21. background-color:white;
  22. }
  23. .container .item .title{
  24. line-height:40px;
  25. border:1px solid silver;
  26. box-sizing:border-box;
  27. text-align:center;
  28. cursor:pointer;
  29. }
  30. .container .item .content{
  31. width:400%;
  32. height:100%;
  33. background-color:yellow;
  34. }
  35. .ml1{
  36. margin-left:-100%;
  37. }
  38. .ml2{
  39. margin-left:-200%;
  40. }
  41. .ml3{
  42. margin-left:-300%;
  43. }
  44. .active{
  45. position:relative;
  46. z-index:1
  47. }
  48. .container .item:hover{
  49. position:relative;
  50. z-index:1
  51. }
  52. .container .item:hover .title{
  53. border-bottom:none;
  54. background-color:yellow;
  55. }
3、label与:checked实现

(1)针对布局一:

</>复制代码

  1. 内容1
  2. 内容2
  3. 内容3
  4. 内容4

</>复制代码

  1. ul,
  2. li {
  3. margin: 0;
  4. padding: 0;
  5. list-style: none;
  6. }
  7. .container {
  8. width: 400px;
  9. height: 300px;
  10. background-color: silver;
  11. }
  12. .tab-content {
  13. position: relative;
  14. width: 100%;
  15. height: 80%;
  16. overflow: hidden;
  17. }
  18. input {
  19. margin: 0;
  20. width: 0;
  21. }
  22. .tab-content .item {
  23. position: absolute;
  24. left: 0;
  25. top: 0;
  26. width: 100%;
  27. height: 100%;
  28. }
  29. .tab-control {
  30. width: 100%;
  31. height: 20%;
  32. }
  33. .tab-control ul {
  34. height: 100%;
  35. }
  36. .tab-control li {
  37. width: 25%;
  38. height: 100%;
  39. float: left;
  40. border: 1px solid silver;
  41. box-sizing: border-box;
  42. background-color: white;
  43. }
  44. .tab-control li:hover {
  45. background-color: #7b7474
  46. }
  47. .tab-control label {
  48. display: inline-block;
  49. width: 100%;
  50. height: 100%;
  51. line-height: 100%;
  52. text-align: center;
  53. text-decoration: none;
  54. cursor: pointer;
  55. }
  56. .tab-control label::after {
  57. content: "";
  58. display: inline-block;
  59. height: 100%;
  60. vertical-align: middle;
  61. }
  62. .tab-content .radio-item{
  63. display:none;
  64. }
  65. .tab-content .radio-item:checked+.item {
  66. z-index: 1;
  67. background-color: yellow;
  68. }

利用css :checked与+(选择紧接在另一个元素后的元素,而且二者有相同的父元素)选择符。

(2)针对布局二:

</>复制代码

    • 1

    • 2

    • 3

    • 4

</>复制代码

  1. ul,li,p{
  2. margin:0;
  3. padding:0;
  4. list-style:none;
  5. }
  6. .container{
  7. width:400px;
  8. height:300px;
  9. background-color:silver;
  10. border:1px solid silver;
  11. }
  12. .container ul{
  13. width:100%;
  14. height:100%;
  15. overflow:hidden;
  16. }
  17. .container .item{
  18. float:left;
  19. width:25%;
  20. height:100%;
  21. background-color:white;
  22. }
  23. .container .item .title{
  24. display:inline-block;
  25. width:100%;
  26. line-height:40px;
  27. border:1px solid silver;
  28. box-sizing:border-box;
  29. text-align:center;
  30. cursor:pointer;
  31. }
  32. .container .item .content{
  33. position:relative;
  34. width:400%;
  35. height:100%;
  36. background-color:yellow;
  37. }
  38. .ml1{
  39. margin-left:-100%;
  40. }
  41. .ml2{
  42. margin-left:-200%;
  43. }
  44. .ml3{
  45. margin-left:-300%;
  46. }
  47. .radio-item{
  48. display:none;
  49. }
  50. .radio-item:checked~.title{
  51. background-color:yellow;
  52. border-bottom:none;
  53. }
  54. .radio-item:checked~.content{
  55. background-color:yellow;
  56. z-index:1;
  57. }

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/111855.html

相关文章

  • 用纯css实现Tab切换

    摘要:所以当我们思考能否用来实现时还应考虑到的结构,能不能构造出满足已存在的选择器的布局。用来实现的好处就是可以尽量大的把组件功能和业务逻辑分离开来,真正做一个组件该做的事,希望越来越好 我们今天用css来实现一个常见的tab切换效果 查看原文可以有更好的排版效果哦 先看效果 https://codepen.io/xboxyan/pe... 前言 哪些简单的效果可以考虑用css来实现呢,目前...

    hizengzeng 评论0 收藏0
  • [译]148个资源让你成为CSS专家

    摘要:层叠样式表二修订版这是对作出的官方说明。速查表两份表来自一份关于基础特性,一份关于布局。核心第一篇一份来自的基础参考指南简写速查表简写形式参考书使用层叠样式表基础指南,包含使用的好处介绍个方法快速写成高质量的写出高效的一些提示。 迄今为止,我已经收集了100多个精通CSS的资源,它们能让你更好地掌握CSS技巧,使你的布局设计脱颖而出。 CSS3 资源 20个学习CSS3的有用资源 C...

    impig33 评论0 收藏0
  • 一起用python做个炫酷音乐播放器,想听啥随便搜!【V2.0升级版,含源码及打包exe】

    摘要:自制一款炫酷音乐播放器,想听啥随便搜下面我们就介绍这个音乐播放器版本新加的部分功能制作过程。直接跳到文末获取源码及打包程序。双击列表页面中某一首歌曲,即可实现音乐播放功能。 ...

    leap_frog 评论0 收藏0
  • CSS3热身实战--过渡与动画(实现炫酷下拉,手风琴,无缝滚动)

    摘要:规定动画的时长。注意子菜单要用隐藏,在显示的时候再设置。如果不加,实际上子菜单,以及子菜单下面的一直在页面上,如果鼠标移上去子菜单,以及子菜单下面的。 1.前言 在自己的专栏上写了十几篇文章了,都是与js有关的。暂时还没有写过关于css3的文章。css3,给我的感觉就是,不难,但是很难玩转自如。今天,就用css3来实现三个特效,希望这三个特殊能让大家受到启发,利用css3做出更好,更炫...

    zqhxuyuan 评论0 收藏0
  • CSS重构:样式表性能调优》读书笔记

    摘要:特指度度量的是选择器识别元素的精确性。为中的各个变量赋予相应的数值,就能得到特指度。为类选择器属性选择器和伪类的数量。该文件包含选项卡组的样式。易于混淆的属性,应用注释予以说明。属性按照字母顺序排列。属性值为时,省略单位。 1、什么是优秀的架构 (1)优秀的架构是可预测的(2)优秀的架构是可扩展的(3)优秀的架构可提升代码复用性(4)优秀的架构可扩展(5)优秀的架构可维护什么时候可以重...

    imingyu 评论0 收藏0

发表评论

0条评论

最新活动
阅读需要支付1元查看
<