Js轮播图和星星点灯作业

js轮播图作业

<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Document</title>

  <style>

    * {

      margin: 0;

      padding: 0;

    }

    div>ul {

      list-style-type: none;

    }

    img {

      width: 600px;

      height: 300px;

      display: none;

    }

    .container {

      width: 600px;

      height: 300px;

      position: relative;

    }

    ol {

      width: 150px;

      height: 20px;

      list-style: none;

      background-color: rgba(0, 0, 0, .5);

      left: 200px;

      bottom: 10px;

      position: absolute;

    }

    ol>li {

      width: 13px;

      height: 13px;

      border-radius: 50%;

      background-color: rgba(255, 255, 255, 0.5);

      float: left;

      margin-top: 3px;

      margin-left: 14px;

    }

    .left,

    .right {

      width: 50px;

      height: 50px;

      font-size: 50px;

      font-weight: bold;

      position: absolute;

      top: 45%;

      background-color: rgba(255, 255, 255, 0.6);

      color: black;

      text-align: center;

      line-height: 50px;

      border-radius: 50%;

      display: none;

    }

    .right {

      right: 0;

    }

  </style>

</head>

<body>

  <div class="container">

    <ul>

      <li><img src="1.jpg" style="display: block;"></li>

      <li><img src="2.jpg" ></li>

      <li><img src="3.jpg" ></li>

      <li><img src="4.jpg" ></li>

      <li><img src="5.jpg" ></li>

    </ul>

    <ol>

      <li></li>

      <li></li>

      <li></li>

      <li></li>

      <li></li>

    </ol>

    <div class="left">&lt;</div>

    <div class="right">&gt;</div>

  </div>

  <script>

    let img_arr = document.querySelectorAll("ul img");

    let div = document.querySelector(".container");

    let left = document.querySelector(".left");

    let right = document.querySelector(".right");

    let j = 0, k = 0,record=0;

    let cirle_arr = document.querySelectorAll("ol li")

    let time_id = setInterval(lunbo,1000);

    //轮播+圆点高亮

    function lunbo() {

      if (j >= img_arr.length) { j = 0; }

      for (let i = 0; i < img_arr.length; i++) {

        if (j == i) {

          img_arr[i].style.display = "block";

          cirle_arr[i].style.backgroundColor = "rgba(255, 255, 255,1)";

        }

        else {

          img_arr[i].style.display = "none";

          cirle_arr[i].style.backgroundColor = "rgba(255, 255, 255,0.5)"

        }

      }

      j++;

    }

    //点击圆点切换

    for (let i = 0; i < img_arr.length; i++) {

      cirle_arr[i].onclick = function () {

        cirle_arr[i].style.backgroundColor = "rgba(255, 255, 255,1)";

        img_arr[i].style.display = "block";

        j = i;

        for (let i = 0; i < img_arr.length; i++) {

          // img_arr[k].style.display = "block";

          // cirle_arr[k].style.backgroundColor = "rgba(255, 255, 255,1)";

          if (i != j) {

            img_arr[i].style.display = "none";

            cirle_arr[i].style.backgroundColor = "rgba(255, 255, 255,0.5)";

          }

        }

      }

    }

   

    //箭头

      left.onclick = function(){

        if(j==0)

        {

          j=img_arr.length;

        }

        j=j-1;

        cirle_arr[j].style.backgroundColor="rgba(255, 255, 255,1)";

        img_arr[j].style.display = "block";

        for (let i = 0; i < img_arr.length; i++)

        {

        if(i!=j)

        {

          img_arr[i].style.display = "none";

          cirle_arr[i].style.backgroundColor = "rgba(255, 255, 255,0.5)";

        }

        }

       

    }

    right.onclick = function(){

      if(j>img_arr.length-1)

      {

        j=0;

        cirle_arr[j].style.backgroundColor="rgba(255, 255, 255,1)";

        img_arr[j].style.display = "block";

        for (let i = 0; i < img_arr.length; i++)

         {

           if(i!=j)

          {

            img_arr[i].style.display = "none";

            cirle_arr[i].style.backgroundColor = "rgba(255, 255, 255,0.5)";

          }

         }

      }

        if(j>0)

        {

           cirle_arr[j].style.backgroundColor="rgba(255, 255, 255,1)";

           img_arr[j].style.display = "block";

           for (let i = 0; i < img_arr.length; i++)

         {

           if(i!=j)

          {

            img_arr[i].style.display = "none";

            cirle_arr[i].style.backgroundColor = "rgba(255, 255, 255,0.5)";

          }

         }

        }

       

        j++;

       

    }

    div.onmousemove = function () {

      clearInterval(time_id)

      left.style.display = "block"

      right.style.display = "block"

    }

    div.onmouseout = function () {

      time_id = setInterval(lunbo, 1000)

      left.style.display = "none"

      right.style.display = "none"

    }

  </script>

</body>

</html>

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <style>

        * {

            margin: 0;

            padding: 0;

        }

        /* body {

            background-color: white;

        } */

    </style>

</head>

<body>

    <script>

        const img_w = 254;

        const img_h = 218;

        document.body.style.backgroundColor = "black"

        document.onclick = function (e) {

            let i = document.createElement("img")

            i.style.position = "absolute"

            let w = my_random(20, 200);

            let h = img_h / img_w * w;

            i.style.border = "black"

            i.style.width = w + "px";

            i.style.height = h + "px";

            i.style.left = (e.pageX - w / 2) + "px"

            i.style.top = (e.pageY - h / 2) + "px"

            document.body.appendChild(i);

        }

        function my_random(min, max) {

            return parseInt(min + Math.ceil((max - min) * Math.random()))

        }

    </script>

</body>

</html>

  • 9
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值