当前位置:   article > 正文

css+html轮播图的实现_用html和css做静态轮播图

用html和css做静态轮播图

1实现(可一步一步实现):

1. 老样子定义基本全局样式,复制即可:

  1. *{
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body{
  7. height: 100vh;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. background-color: rgb(164, 202, 224);
  12. }

2.定义标签:12

  1. <!-- 底层盒子 -->
  2. <div class="main">
  3. <!-- 三个单选按钮,先默认选择第一个 -->
  4. <input type="radio" name="choose" id="choose1" checked>
  5. <input type="radio" name="choose" id="choose2">
  6. <input type="radio" name="choose" id="choose3">
  7. <!-- 放三张图片,用背景图片表示 ,都给两个选择器 -->
  8. <div class="item item1"></div>
  9. <div class="item item2"></div>
  10. <div class="item item3"></div>
  11. <!-- 三个label标签 -->
  12. <span class="select">
  13. <label for="choose1"></label>
  14. <label for="choose2"></label>
  15. <label for="choose3"></label>
  16. </span>
  17. </div>

label 元素不会向用户呈现任何特殊效果。不过,它为鼠标用户改进了可用性。如果您在 label 元素内点击文本,就会触发此控件。就是说,当用户选择该标签时,浏览器就会自动将焦点转到和标签相关的表单控件上。

:checked CSS 伪类选择器表示任何处于选中状态的radio(), checkbox () 或("select") 元素中的option HTML元素("option")。

总的来说就是,后面我们可以利用label这一特性,鼠标点击某个label,就相当于某个某个单选按钮被选中了,这时就可以通过:checked选择器对这个按钮相关的元素进行对应的css样式改变操作。详细继续往下看。

3.底层盒子基本样式:

  1. .main{
  2. position: relative;
  3. width: 400px;
  4. height: 250px;
  5. overflow: hidden;
  6. border-radius: 5px;
  7. }

position: relative;相对定位。 overflow: hidden;溢出隐藏。 border-radius: 5px; 角弧度。

3.图片的相同样式,item选择器:

  1. .item{
  2. position: absolute;
  3. top: 0;
  4. width: 100%;
  5. height: 100%;
  6. transition: all 0.5s;
  7. background-size: cover;
  8. }

position: absolute; 绝对定位1. transition: all 0.5s; 给个过渡效果,后面切图时好看。 background-size: cover; 把背景图像扩展至足够大,以使背景图像完全覆盖背景区域。

4.每张图片自己的样式,就是都先偏移相应距离:

  1. .item1{
  2. background-image: url(./img/1.jpg);
  3. }
  4. .item2{
  5. background-image: url(./img/4.jpg);
  6. left: 100%;
  7. }
  8. .item3{
  9. background-image: url(./img/11.jpg);
  10. left: 200%;
  11. }

background-image: url(./img/1.jpg); 背景图片。 left: 100%; 绝对定位的水平方向的位置距离大小。

5.先让单选按钮显示出来:

  1. input{
  2. position: relative;
  3. z-index: 100;
  4. display: none;
  5. }

z-index 属性设置元素的堆叠顺序。拥有更高堆叠顺序的元素总是会处于堆叠顺序较低的元素的前面。 display: none; 隐藏,这步先不写这句,因为隐藏了不好观察,到最后写完了再来加上这句。

6.label标签所在的底层盒子样式:

  1. .select{
  2. position: absolute;
  3. bottom: 10px;
  4. left: 50%;
  5. transform: translateX(-50%);
  6. width: 60px;
  7. height: 10px;
  8. z-index: 1;
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. }

left: 50%; transform: translateX(-50%); 先x轴定位走50%再偏移自身的50%,实现左右居中。 display: flex; justify-content: space-between; align-items: center; flex布局,能让子元素两边贴边后再动态平分剩下空间排列。

7.label标签样式:

  1. .select>label{
  2. width: 10px;
  3. height: 10px;
  4. background-color: rgb(255, 255, 255);
  5. border-radius: 50%;
  6. cursor: pointer;
  7. border: 1.5px solid white;
  8. }

cursor: pointer; 鼠标样式为小手。 border: 1.5px solid white; 白色边框。

8.点击label标签后变其黑色:

  1. .main input:nth-of-type(1):checked ~ .select label:nth-of-type(1){
  2. background-color: rgb(26, 26, 26);
  3. }
  4. .main input:nth-of-type(2):checked ~ .select label:nth-of-type(2){
  5. background-color: rgb(26, 26, 26);
  6. }
  7. .main input:nth-of-type(3):checked ~ .select label:nth-of-type(3){
  8. background-color: rgb(26, 26, 26);
  9. }

首先 ~ 波浪符可以选择位于跟它同一层的后面所有的某元素,不管它位置在哪。 就是 .main input:nth-of-type(1):checked 表示被选中的第一个radio单选按钮 ~ 选择后面的跟他同一层的.select .select label:nth-of-type(1) .select 又选择它的第一个label子元素 background-color: rgb(26, 26, 26); 将这个label子元素背景色设置为黑色。 大概就是上面这个流程。然后其它两个按钮也是以此类推。

9.实现切图:

  1. .main input:nth-of-type(1):checked ~ .item{
  2. transform: translateX(0);
  3. }
  4. .main input:nth-of-type(2):checked ~ .item{
  5. transform: translateX(-100%);
  6. }
  7. .main input:nth-of-type(3):checked ~ .item{
  8. transform: translateX(-200%);
  9. }

跟第8步一样的: .main input:nth-of-type(1):checked 表示被选中的第一个radio单选按钮 ~ .item 选择后面的跟他同一层的所有 .item 然后在x轴偏移相对的距离就好。

附录:完整代码

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>北极光之夜。</title>
  8. <style>
  9. *{
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. body{
  15. height: 100vh;
  16. display: flex;
  17. justify-content: center;
  18. align-items: center;
  19. background-color: rgb(164, 202, 224);
  20. }
  21. .main{
  22. position: relative;
  23. width: 400px;
  24. height: 250px;
  25. overflow: hidden;
  26. border-radius: 5px;
  27. }
  28. .item{
  29. position: absolute;
  30. top: 0;
  31. width: 100%;
  32. height: 100%;
  33. transition: all 0.5s;
  34. background-size: cover;
  35. }
  36. .item1{
  37. background-image: url(./img/1.jpg);
  38. }
  39. .item2{
  40. background-image: url(./img/4.jpg);
  41. left: 100%;
  42. }
  43. .item3{
  44. background-image: url(./img/11.jpg);
  45. left: 200%;
  46. }
  47. input{
  48. position: relative;
  49. z-index: 100;
  50. /* display: none; */
  51. }
  52. .select{
  53. position: absolute;
  54. bottom: 10px;
  55. left: 50%;
  56. transform: translateX(-50%);
  57. width: 60px;
  58. height: 10px;
  59. z-index: 1;
  60. display: flex;
  61. justify-content: space-between;
  62. align-items: center;
  63. }
  64. .select>label{
  65. width: 10px;
  66. height: 10px;
  67. background-color: rgb(255, 255, 255);
  68. border-radius: 50%;
  69. cursor: pointer;
  70. border: 1.5px solid white;
  71. }
  72. .main input:nth-of-type(1):checked ~ .select label:nth-of-type(1){
  73. background-color: rgb(26, 26, 26);
  74. }
  75. .main input:nth-of-type(2):checked ~ .select label:nth-of-type(2){
  76. background-color: rgb(26, 26, 26);
  77. }
  78. .main input:nth-of-type(3):checked ~ .select label:nth-of-type(3){
  79. background-color: rgb(26, 26, 26);
  80. }
  81. .main input:nth-of-type(1):checked ~ .item{
  82. transform: translateX(0);
  83. }
  84. .main input:nth-of-type(2):checked ~ .item{
  85. transform: translateX(-100%);
  86. }
  87. .main input:nth-of-type(3):checked ~ .item{
  88. transform: translateX(-200%);
  89. }
  90. </style>
  91. </head>
  92. <body>
  93. <!-- 底层盒子 -->
  94. <div class="main">
  95. <!-- 三个单选按钮,先默认选择第一个 -->
  96. <input type="radio" name="choose" id="choose1" checked>
  97. <input type="radio" name="choose" id="choose2">
  98. <input type="radio" name="choose" id="choose3">
  99. <!-- 放三张图片,用背景图片表示 -->
  100. <div class="item item1"></div>
  101. <div class="item item2"></div>
  102. <div class="item item3"></div>
  103. <!-- 三个label标签 -->
  104. <span class="select">
  105. <label for="choose1"></label>
  106. <label for="choose2"></label>
  107. <label for="choose3"></label>
  108. </span>
  109. </div>
  110. </body>
  111. </html>
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号