js 鼠标滚动效果:图片放大缩小

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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.container{
width: 40%;
height: 300px;
overflow: hidden;
margin: 100px auto;
}
</style>
</head>

<body>
<!-- <div class="box">
<input type="text" value="1" name="inp">
</div> -->
<div class="container">
<img src="./1.png" alt="">
</div>




<script>
/*const box = document.querySelector(".box");
const inp = document.querySelector(".inp");*/

/* box.onmouseover = function (ev) {
var ev = window.event || ev;
var tag = ev.target;
tag.onmousewheel = function (ev) {
var sc = ev.wheelDelta;
console.log(ev.wheelDelta);
sc < 0 ? (sc = -1) : sc = 1;
console.log(sc)
var x = parseInt(tag.value);
tag.value = x + sc;
}
}*/


const container = document.querySelector(".container");
const img = document.querySelector("img");
var widthW=100; // 初始化默认宽度
img.style.width = `${widthW}%`; // 赋值默认宽度
container.onmouseover = ()=> { // 鼠标经过事件
img.onmousewheel = (b)=> { // 鼠标滚动事件
console.log(b); // 打印 b ,可以看到鼠标滚动得很多信息
b.wheelDelta < 0 ? widthW-- : widthW++; // 其中 wheelDelta 对象的值就是判断滚轮往前滚还是往后滚: <0 是往后滚, >0是前滚
img.style.width = `${widthW}%`;
}
}
</script>
</body>

</html>

打印鼠标滚动的信息看看:
js 鼠标滚动效果:图片放大缩小


js 鼠标滚动效果:图片放大缩小
https://github.com/chergn/chergn.github.io/2b11d839de5a/
作者
全易
发布于
2024年3月28日
许可协议