-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhakkimda.html
More file actions
145 lines (97 loc) · 5 KB
/
hakkimda.html
File metadata and controls
145 lines (97 loc) · 5 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hakkımda</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<audio id="myAudioBasHak" src=""></audio>
<audio id="myAudioHak">
<source src="Resources/hakkimda/arkafon.mp3" type="audio/mpeg">
</audio>
<br><br><br><br><br><br><br><br><br><br>
<div class="top-menu" >
<h1>PLUS<br>X<br>GAMES</h1>
<div class="home-link" style="display: flex; align-items: center; justify-content: space-between; position: absolute; bottom: -20%;">
<a href="index.html" style="color: inherit; text-decoration: none;">
Ana Sayfa
</a>
<p style="font-size: 30px; color:aqua;"><p style="color: red;"> > </p> Hakkımda </p>
</div>
<img id="myImg" class="menu-image" src="Resources/menu4.png">
</div>
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
</div>
<div class="ad ad-left">
<a href="https://unocoin.com/in/" target="_blank">
<img src="Resources/reklam/reklam4.gif">
</a>
</div>
<div class="ad ad-right">
<a href="https://tr.bitdegree.org/en-iyi-kripto-borsalari/bitstrades/popularite" target="_blank">
<img src="Resources/reklam/reklam5.gif">
</a>
</div>
<div id="animated-text">
<div class="container">
<img src="Resources/hakkimda/anavid.gif" autoplay loop muted style="width: 100%;" class="rectangle-image-mc fade-in10">
<h1 style="font-size: 45px;" class="fade-in1"> 🖍 <strong>Hakkımda Sayfasına Hoşgeldiniz!</strong></h1>
<p style="font-size: 25px;" class="fade-in2"><strong>Merhaba</strong>, bu web sayfasını yapmak için bayadır uğraşıyorum, internetteki birçok farklı kaynaklardan yararlandım, kaynakların sahiplerine teşekkür etmek isterim öncelikle, ve bu kaynakları bulması da kolay olmadı, küçük bir hata bile 2 3 saat uğraşmama neden olabiliyor. <br><br> Ve bu web sitesini yapmam çok aceleye geldi diyebilirim, normalde 3 4 haftada yapmam gereken işlemleri 1 haftaya sığdırmak durumunda kaldım, bu da web sitemin çok geliştirilemeden sunulmasına sebebiyet veriyor, ama olur da devam edecek olursam geliştirme işlemlerine ara vermeden devam edeceğim<br><br>Web Siteme göz attığınız için teşekkür ederim!</p>
</div>
</div>
<br><br><br><br>
</div><br><br><br><br>
</div>
</center>
<footer class=" fade-in13 ">
<p>© Ramazan | 522 | 11/A | 2023</p>
</footer>
<div class = "fade-in13" id="messageBox"> <p> Ana sayfaya dönmek için yukardaki menüden "Ana Sayfa" yazısına bas.</p></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="script.js"></script>
<script>
// Get the button
let mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
// Ses dosyalarınızın listesi
var sounds = [
"Resources/hakkimda/arkafon.mp3",
];
// Sayfa yüklendiğinde ses dosyasını oynat
window.onload = function() {
document.getElementById("myAudioBasHak").play();
setTimeout(playRandomSound, 0); // 3 saniye bekledikten sonra rastgele bir ses oynat
};
function playRandomSound() {
var audio = document.getElementById("myAudioHak");
var randomIndex = Math.floor(Math.random() * sounds.length); // Rastgele bir index seç
audio.src = sounds[randomIndex]; // Seçilen ses dosyasını ayarla
audio.play(); // Ses dosyasını oynat
}
// Ses dosyasının onended olayı dinleyicisi
var audio = document.getElementById("myAudioHak");
audio.addEventListener("ended", function() {
// Yeni bir ses dosyası seçip oynat
var index = Math.floor(Math.random() * sounds.length); // Rastgele bir index seç
audio.src = sounds[index]; // Seçilen ses dosyasını ayarla
audio.play(); // Ses dosyasını oynat
});
</script>
</body>
</html>