This commit is contained in:
Кирилл Моос 2025-09-12 18:16:05 +03:00
parent edaa753596
commit c331705b35
10 changed files with 127 additions and 0 deletions

BIN
new/assets/chair.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

BIN
new/assets/coffee.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

BIN
new/assets/dog.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

BIN
new/assets/fire.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body {
background: white;
}
</style>
</head>
<body>
<pre>
--- Правила ---
1) Никаких превью и предпросмотров результатов
2) Из редактора уходить нельзя, переключаться на другие окна и тд
3) Никаких измерительных приборов (линеек, циркулей и тд)
4) Убираем руки от клавиатуры когда закончится время
5) В конце нажимаем Finish и вводим yes
Удачи и получай удовольствие от процесса!
--- Assets ---
./dog.png (347x398)
./chair.png (529x928)
./table.png (422x422)
./fire.gif (498x498)
./smoke.gif (240x240) (shoud be inverted to 90 degree)
./coffee.gif (494x482)
</pre>
</body>
</html>

BIN
new/assets/page.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

19
new/assets/result.html Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script>
window.addEventListener('message', function(e) {
if (
window.location.origin === 'file://' ||
window.location.origin === (e.origin || e.originalEvent.origin)
) {
document.documentElement.innerHTML = e.data
}
})
</script>
</body>
</html>

BIN
new/assets/smoke.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
new/assets/table.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

73
new/editor.html Normal file

File diff suppressed because one or more lines are too long