Dmtlant commited on
Commit
3cf1131
·
verified ·
1 Parent(s): cfb2c08

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +72 -18
index.html CHANGED
@@ -1,19 +1,73 @@
1
- <!doctype html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
  <html>
3
+ <head>
4
+ <title>Web NFC Reader</title>
5
+ <style>
6
+ body {
7
+ font-family: sans-serif;
8
+ }
9
+ #status {
10
+ margin-top: 10px;
11
+ font-weight: bold;
12
+ }
13
+ #nfcData {
14
+ margin-top: 10px;
15
+ border: 1px solid #ccc;
16
+ padding: 10px;
17
+ white-space: pre-wrap;
18
+ }
19
+ </style>
20
+ </head>
21
+ <body>
22
+ <h1>Web NFC Reader</h1>
23
+ <p>Поднесите NFC-карту к устройству.</p>
24
+ <button id="startButton">Начать сканирование NFC</button>
25
+ <p id="status"></p>
26
+ <div id="nfcData"></div>
27
+
28
+ <script>
29
+ const startButton = document.getElementById('startButton');
30
+ const statusDiv = document.getElementById('status');
31
+ const nfcDataDiv = document.getElementById('nfcData');
32
+
33
+ startButton.addEventListener('click', async () => {
34
+ statusDiv.textContent = 'Сканирование... Пожалуйста, поднесите карту.';
35
+ nfcDataDiv.textContent = '';
36
+
37
+ if ('NDEFReader' in window) {
38
+ try {
39
+ const ndef = new NDEFReader();
40
+ await ndef.scan();
41
+
42
+ ndef.onreadingerror = () => {
43
+ statusDiv.textContent = 'Ошибка чтения. Попробуйте еще раз.';
44
+ };
45
+
46
+ ndef.onreading = event => {
47
+ const { message, serialNumber } = event;
48
+ statusDiv.textContent = 'Карта успешно считана!';
49
+ let dataString = `Серийный номер: ${serialNumber || 'Недоступен'}\n`;
50
+
51
+ for (const record of message.records) {
52
+ dataString += `\nТип записи: ${record.recordType}\n`;
53
+ if (record.recordType === 'text') {
54
+ const textDecoder = new TextDecoder('utf-8');
55
+ dataString += `Данные (текст): ${textDecoder.decode(record.data)}\n`;
56
+ } else if (record.recordType === 'uri') {
57
+ dataString += `Данные (URI): ${record.data.buffer ? new TextDecoder('utf-8').decode(record.data) : 'Не декодируется'}\n`;
58
+ } else {
59
+ dataString += `Данные (другой тип): ${record.data ? Array.from(new Uint8Array(record.data.buffer)).map(b => b.toString(16).padStart(2, '0')).join(' ') : 'Нет данных'}\n`;
60
+ }
61
+ }
62
+ nfcDataDiv.textContent = dataString;
63
+ };
64
+ } catch (error) {
65
+ statusDiv.textContent = `Ошибка сканирования: ${error}`;
66
+ }
67
+ } else {
68
+ statusDiv.textContent = 'Web NFC API не поддерживается в вашем браузере.';
69
+ }
70
+ });
71
+ </script>
72
+ </body>
73
+ </html>