-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlikeit.html
More file actions
45 lines (40 loc) · 1.38 KB
/
likeit.html
File metadata and controls
45 lines (40 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Device Detection with WURFL.js</title>
<script src="https://wurfl.io/wurfl.js" async></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 20px;
}
#device-info {
font-size: 18px;
color: #333;
}
</style>
</head>
<body>
<h1>Device Detection with WURFL.js</h1>
<p id="device-info">Detecting device...</p>
<script>
// WURFL.js tespit tamamlandığında çalışacak fonksiyon
document.addEventListener("WurflJSDetectionComplete", function() {
let deviceInfo = "Complete Device Name: " + WURFL.complete_device_name + "<br>" +
"Form Factor: " + WURFL.form_factor + "<br>" +
"Is Mobile: " + (WURFL.is_mobile ? "Yes" : "No");
// Eğer cihaz bir akıllı telefon ise ek bir mesaj gösterelim
if (WURFL.is_mobile === true && WURFL.form_factor === "Smartphone") {
deviceInfo += "<br>This is a Smartphone!";
} else {
deviceInfo += "<br>This is not a Smartphone.";
}
// Sonuçları HTML sayfasına yazdır
document.getElementById("device-info").innerHTML = deviceInfo;
});
</script>
</body>
</html>