首页 > 其他分享 >第六次html

第六次html

时间:2023-04-05 12:33:45浏览次数:41  
标签:index arr right log img html 第六次 left

运行截图:

 

 代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.container>img{
position: absolute;
width: 100%;
height: 1000px;
display: none;

}
.container{
position: relative;

}
#right{
position: absolute;
background: url("D:/Download/1.jpg") no-repeat -41px 50%;
right: 0px;
top: 400px;
width: 41px;
height: 69px;

}
#left{
position:absolute;
background: url("D:/Download/1.jpg") no-repeat 0px 50%;
left: 0px;
top: 400px;
width: 41px;
height: 69px;
}

</style>
<script type="text/javascript">
window.onload = () => {
let img_arr = document.querySelectorAll(".container>img")
// console.log(img_arr)
let right = document.getElementById("right")
// console.log(right)
let left = document.getElementById("left")
// console.log(left)
let index = 0;
right.onclick = function (e) {
console.log(img_arr[index])
img_arr[index].style.display = "none";
index = ++index % img_arr.length
img_arr[index].style.display = "block"
}
left.onclick = function (e) {
console.log(img_arr[index])
img_arr[index].style.display = "none"
if (index==0){
index=img_arr.length - 1
}else{
index--
}
img_arr[index].style.display = "block"
}
}
</script>
</head>

<body>
<div class="container">
<img src="D:/Download/1.jpg" style="display: block;" />
<img src="D:/Download/1.jpg" alt="" />
<img src="D:/Download/1.jpg"/>
</div>
<div id="right">

</div>
<div id="left">

</div>

</body>
</html>

标签:index,arr,right,log,img,html,第六次,left
From: https://www.cnblogs.com/EchoQ12/p/17289133.html

相关文章

  • HTML5地理定位 Geolocation API
    使用getCurrentPosition方法来取得用户当前的地理位置信息,该方法的定义如下所示。voidgetCurrentPosition(onSuccess,onError,options);第一个参数为获取当前地理位置信息成功时所执行的回调函数;第二个参数为获取当前地理位置信息失败时所执行的回调函数;第三个参数为一些可选属......
  • 怎么利用CSS实现HTML5响应式导航栏
    在html5中实现响应式导航栏的方法有很多种,如何利用纯CSS来现实这一功能,在这里小编就通过实例来和大家讲解,纯CSS实现的HTML5响应式导航栏的方法和技巧。目前响应试web页面已经逐渐开始盛行,除了将页面的内容以及布局结构实现响应试以外,剩下的重点就是实现导航栏的响应试,当然方法有很......
  • html5从响应式导航开始
    常用的一个响应式网页导航条解决方案,整理记录。效果展示入口:https://shanhubei.github.io/navigationh5/html结构和js代码都很简单,主要是css样式。直接粘上来的代码有点乱。最下面有demo的下载地址,可以下载看整理过的代码。主要的css知识点有:@mediascreenand(max-width:1279px......
  • JavaWeb——HTML基本标签详解及案例实战(文件标签、文本标签、图片标签、列表标签、链
    目录1、文件标签2、文本标签3、图片标签4、列表标签5、链接标签6、块标签7、语义化标签8、表格标签9、综合案例上一节介绍了HTML的基本概念,和基本语法,本节介绍下HTML的基本标签和表单标签。这部分学习可以参照W3Cschool,一个很好的网站。1、文件标签文件标签是构成HTML最基本的标签,......
  • 第四次html
    运行效果:  代码:body{ /*background-color:#333;*/ } :root{ --swiper-navigation-size:44px; } *{ padding:0; margin:0; /*border:1pxsolidred;*/ } #logo{ float:left; width:30%; } .nav-bottom{ width:100......
  • 第二次html
    效果:  代码:<html> <head> <metacharset="UTF-8"> <title></title> <styletype="text/css"> .div_class{ background-color:#ccc; } .dox{ background-color:#ddd; } </style> </he......
  • 全功能 HTML 框架 Framework7 发布 v8.0.0 版本
    全功能HTML框架Framework7发布v8.0.0版本来源:OSCHINA编辑: 罗奇奇2023-04-0407:07:28 0Framework7是一个开源框架,用于开发具有原生外观和感觉的移动端、桌面端或Web应用程序。它也是必不可少的原型设计工具,可在开发者需要时尽快显示可运行的应用......
  • 第六次
    这个作业属于哪个课程https://edu.cnblogs.com/campus/sdscfz/SF4这个作业要求在哪里https://edu.cnblogs.com/campus/sdscfz/SF4/homework/12954这个作业的目标第6次作业金字塔<htmllang="en"><head><metacharset="UTF-8"><metahttp-eq......
  • 第六次
    这个作业属于哪个课程https://edu.cnblogs.com/campus/sdscfz/SF4这个作业要求在哪里https://edu.cnblogs.com/campus/sdscfz/SF4/homework/12954这个作业的目标第6次作业金字塔<htmllang="en"><head><metacharset="UTF-8"><metahttp-eq......
  • 第六次
    这个作业属于哪个课程https://edu.cnblogs.com/campus/sdscfz/SF4这个作业要求在哪里https://edu.cnblogs.com/campus/sdscfz/SF4/homework/12954这个作业的目标第6次作业金字塔<htmllang="en"><head><metacharset="UTF-8"><metahttp-eq......