122 lines
3.7 KiB
HTML
122 lines
3.7 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="tr">
|
|||
|
|
|||
|
<head>
|
|||
|
<!--!Copyright © 2023 Aliberk Sandıkçı -->
|
|||
|
<!--!Copyright © 2023 iflpanel Developers -->
|
|||
|
<meta charset="UTF-8" />
|
|||
|
|
|||
|
<!-- Meta Content -->
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|||
|
<meta name="description" content="iflpanel Akıllı Tahta Arkaplan Sayfası" />
|
|||
|
<meta name="keywords" content="iflpanel,akıllı tahta,arkaplan,tahta,board" />
|
|||
|
<meta name="author" content="Aliberk Sandıkçı" />
|
|||
|
|
|||
|
<!-- CSS Files -->
|
|||
|
<link rel="stylesheet" type="text/css" href="/assets/css/main.css" />
|
|||
|
|
|||
|
<title>iflpanel Tahta</title>
|
|||
|
</head>
|
|||
|
|
|||
|
<body>
|
|||
|
<!-- MAIN AREA -->
|
|||
|
<section id="top">
|
|||
|
<div class="class">
|
|||
|
<span class="grade">12</span>
|
|||
|
<span class="branch">C</span>
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="clock">
|
|||
|
<h1 id="time">12.00</h1>
|
|||
|
</div>
|
|||
|
<div class="settings-box">
|
|||
|
<form>
|
|||
|
<button id="timers-button" type="button" onmouseover="toggleTimers()" onclick="toggleTimers()">⏱</button>
|
|||
|
<button id="settings-button" type="button" onmouseover="toggleSettings()" onclick="toggleSettings()">⚙</button>
|
|||
|
</form>
|
|||
|
<div id="settings">
|
|||
|
<form>
|
|||
|
<div class="cell">
|
|||
|
<input type="checkbox" id="chx-clockSecond" onchange="toggleClockSeconds()" />
|
|||
|
<label for="chx-clockSecond">Saniye</label>
|
|||
|
</div>
|
|||
|
<div class="cell">
|
|||
|
<input type="checkbox" id="chx-timerMsec" onchange="toggleTimerMsec()" checked />
|
|||
|
<label for="chx-timerMsec">Sayaçlarda Milisaniye</label>
|
|||
|
</div>
|
|||
|
<div class="cell">
|
|||
|
<input type="checkbox" id="chx-devVersion" onchange="toggleDevVersion()">
|
|||
|
<label for="chx-devVersion">Geliştirici Sürümü</label>
|
|||
|
</div>
|
|||
|
</form>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</section>
|
|||
|
|
|||
|
<hr style="width: 100%; box-sizing: border-box;">
|
|||
|
|
|||
|
<!-- INTERACTIVE / FUNCTIONAL AREA -->
|
|||
|
<section id="mid">
|
|||
|
<div id="timers">
|
|||
|
<div id="timers-menu">
|
|||
|
<ul>
|
|||
|
<li onmouseover="toggleTimers('stopwatch')" onclick="toggleTimers('stopwatch')">
|
|||
|
<button class="pushable pushable-f pushable-l">
|
|||
|
<span class="shadow"></span>
|
|||
|
<span class="edge"></span>
|
|||
|
<span class="front">
|
|||
|
Kronometre
|
|||
|
</span>
|
|||
|
</button>
|
|||
|
</li>
|
|||
|
</ul>
|
|||
|
</div>
|
|||
|
<div id="stopwatch">
|
|||
|
<div class="timer">
|
|||
|
<div class="min">
|
|||
|
00
|
|||
|
</div>
|
|||
|
.
|
|||
|
<div class="sec">
|
|||
|
00
|
|||
|
</div>
|
|||
|
<span id="stopwatch-msec-dot">.</span>
|
|||
|
<div class="msec">
|
|||
|
00
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<form>
|
|||
|
<input type="button" id="start-cro" name="start-cro" value="Başlat" onmouseover="Stopwatch('start')"
|
|||
|
onclick="Stopwatch('start')" checked>
|
|||
|
<input type="button" id="stop-cro" name="stop-cro" value="Durdur ve Sıfırla" onmouseover="Stopwatch('stop')"
|
|||
|
onclick="Stopwatch('stop')" checked>
|
|||
|
</form>
|
|||
|
</div>
|
|||
|
|
|||
|
<div id="timer">
|
|||
|
<div class="timer">
|
|||
|
00.00.00
|
|||
|
</div>
|
|||
|
<p>yapım aşamasında: geriye doğru sayma özelliği</p>
|
|||
|
</div>
|
|||
|
|
|||
|
</div>
|
|||
|
|
|||
|
<div id="yemek-listesi">
|
|||
|
yapım aşamasında: yemekhane listesi eklenecek
|
|||
|
</div>
|
|||
|
|
|||
|
<div id="animations">
|
|||
|
yapım aşamasında: animasyonlar / oyunlar eklenecek
|
|||
|
</div>
|
|||
|
</section>
|
|||
|
|
|||
|
<!-- NON-INTERACTIVE DECORATION AREA -->
|
|||
|
<section id="bottom">
|
|||
|
<div id="rainbow"></div>
|
|||
|
</section>
|
|||
|
<script src="/assets/js/old_main.js"></script>
|
|||
|
<script src="/assets/js/old_stopwatch.js"></script>
|
|||
|
</body>
|
|||
|
|
|||
|
</html>
|