-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
51 lines (45 loc) · 1.4 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"use strict"
const headerImgs = document.querySelectorAll(".header__img")
const btnLearnMore = document.querySelector("#btn__learnMore")
const btnGo = document.querySelector("#btn__go")
const inputCity = document.getElementById("input__city")
const countryChoose = document.querySelector("#countryChoose")
const countryChoose1 = document.querySelector("#img__country--1")
const countryChoose2 = document.querySelector("#img__country--2")
const countryChoose3 = document.querySelector("#img__country--3")
let curImg = 0
const gotoImg = function () {
headerImgs.forEach((img, i) => {
if (curImg === 4) {
curImg = 0
}
img.style.transform = `translateX(${100 * (i - curImg)}%`
})
curImg++
}
const refreshImg = function () {
setTimeout(function () {
gotoImg()
refreshImg()
}, 4000)
}
countryChoose1.addEventListener("click", () => {
alert("敬请期待!")
})
countryChoose2.addEventListener("click", () => {
alert("敬请期待!")
})
countryChoose3.addEventListener("click", () => {
window.location.href = "./second.html"
})
btnLearnMore.addEventListener("click", () => {
countryChoose.scrollIntoView({ behavior: "smooth" })
})
btnGo.addEventListener("click", () => {
if (inputCity.value === "") {
alert("请先输入目的地!")
}
if (inputCity.value !== "") {
countryChoose.scrollIntoView({ behavior: "smooth" })
}
})