-
Notifications
You must be signed in to change notification settings - Fork 0
/
slide.html
127 lines (114 loc) · 3.49 KB
/
slide.html
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="tr-TR">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Slide</title>
<style>
* {
margin: 0px;
}
#slaytalani {
width: 1000px;
height: 350px;
margin: 50px auto;
position: relative;
overflow: hidden;
border-radius: 5px;
}
#resim {
width: 1000px;
height: 350px;
position: relative;
}
.solalani {
width: 100px;
height: 350px;
position: absolute;
text-align: left;
left: 0px;
top: 0px;
}
.sagalani {
width: 100px;
height: 350px;
position: absolute;
text-align: right;
right: 0px;
top: 0px;
}
.sol {
width: 50px;
height: 50px;
position: absolute;
top: 42%;
left: 25px;
opacity: 0;
transition: all .5s ease-in-out 0s;
border-radius: 50%;
}
.sag {
width: 50px;
height: 50px;
position: absolute;
top: 42%;
right: 25px;
opacity: 0;
transition: all .5s ease-in-out 0s;
border-radius: 50%;
}
.solalani:hover .sol {
opacity: 0.5;
}
.sagalani:hover .sag {
opacity: 0.5;
}
</style>
</head>
<body onload="calistir()">
<div id="slaytalani">
<img id="resim" src="slayt1.jpg" width="1000" height="350" style="border: none;" />
<div class="solalani"> <img src="solok.jpeg" width="50" height="50" class="sol" onclick="resimdegistir(-1)"
style="border: none; cursor: pointer;" /> </div>
<div class="sagalani"> <img src="sagok.jpeg" width="50" height="50" class="sag" onclick="resimdegistir(1)"
style="border: none; cursor: pointer;" /> </div>
</div>
<script type="text/javascript" Language="javascript">
var resimsirasi = 1;
var toplamresim = 10;
function resimdegistir(deger) {
var resim = document.getElementById("resim");
resimsirasi = resimsirasi + deger;
if (resimsirasi > toplamresim) {
resimsirasi = 1;
}
if (resimsirasi < 1) {
resimsirasi = toplamresim;
}
resim.src = "slayt" + resimsirasi + ".jpg";
clearInterval(zaman);
zaman = window.setInterval(function calistir() {
var resim = document.getElementById("resim");
resimsirasi = resimsirasi + 1;
if (resimsirasi > toplamresim) {
resimsirasi = 1;
}
if (resimsirasi < 1) {
resimsirasi = toplamresim;
}
resim.src = "slayt" + resimsirasi + ".jpg";
}, 2000);
}
var zaman = window.setInterval(function calistir() {
var resim = document.getElementById("resim");
resimsirasi = resimsirasi + 1;
if (resimsirasi > toplamresim) {
resimsirasi = 1;
}
if (resimsirasi < 1) {
resimsirasi = toplamresim;
}
resim.src = "slayt" + resimsirasi + ".jpg";
}, 2000);
</script>
</body>
</html>