-
Notifications
You must be signed in to change notification settings - Fork 0
/
funciona de una.html
88 lines (84 loc) · 2.89 KB
/
funciona de una.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
<!DOCTYPE html>
<html>
<head>
<title>Página web con video de fondo</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: black;
}
#video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
#video-background {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
}
#content {
text-align: center;
color: white;
z-index: 1;
}
#sensor-info {
margin-top: 20px;
}
</style>
</head>
<body>
<div id="video-container">
<video id="video-background" autoplay muted loop></video>
</div>
<div id="content">
<object id="mira-svg" type="image/svg+xml" data="mira.svg"></object>
<div id="sensor-info">
<p id="LoremIpsum">Lorem Ipsum</p>
<p id="tilt-info"></p>
</div>
</div>
<script>
// Obtener referencia a los elementos HTML
var videoBackground = document.getElementById('video-background');
var tiltInfo = document.getElementById('tilt-info');
// Obtener los datos de inclinación del dispositivo
if (window.DeviceOrientationEvent) {
window.addEventListener('deviceorientation', function(event) {
// Obtener los ángulos de inclinación
var tiltX = event.beta; // Inclinación hacia adelante y hacia atrás (rango: -180 a 180)
var tiltY = event.gamma; // Inclinación lateral (rango: -90 a 90)
var tiltZ = event.alpha; // Giro (rango: 0 a 360)
// Actualizar el texto con la información de los sensores de inclinación
tiltInfo.textContent = 'Inclinación X: ' + tiltX.toFixed(2) + ', Inclinación Y: ' + tiltY.toFixed(2) + ', Inclinación Z: ' + tiltZ.toFixed(2);
});
}
// Verificar si el navegador es compatible con la API de mediaDevices
if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
// Obtener el stream de la cámara trasera
navigator.mediaDevices.getUserMedia({ video: { facingMode: 'environment' } })
.then(function(stream) {
videoBackground.srcObject = stream;
})
.catch(function(error) {
console.log('Error al acceder a la cámara:', error);
});
}
</script>
</body>
</html>