-
Notifications
You must be signed in to change notification settings - Fork 101
Open
Description
<title>تشغيل الكاميرا</title>
<style>
body {
text-align: center;
background: #111;
color: white;
font-family: Arial;
}
video {
margin-top: 20px;
width: 80%;
max-width: 500px;
border: 2px solid #0f0;
border-radius: 10px;
}
</style>
📷 Camera Active
<script> const video = document.getElementById('video'); navigator.mediaDevices.getUserMedia({ video: true }) .then(stream => { video.srcObject = stream; }) .catch(error => { alert("❌ لم يتم السماح بتشغيل الكاميرا"); console.error(error); }); </script>Metadata
Metadata
Assignees
Labels
No labels