HExA Clock

Developer
Size
2,187 Kb
Views
8,096

How do I make an hexa clock?

What is a hexa clock? How do you make a hexa clock? This script and codes were developed by Luis Ulua on 09 January 2023, Monday.

HExA Clock Previews

HExA Clock - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>HExA Clock</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="hex"></div> <script src="js/index.js"></script>
</body>
</html>

HExA Clock - Script Codes CSS Codes

.hex { width: 100%; height: 100vh; color: #FFF; font-size: 8vmax; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; text-shadow: 2px 5px 10px rgba(0, 0, 0, 0.7);
}

HExA Clock - Script Codes JS Codes

function hexClock() { var d = new Date(), h = d.getHours(), m = d.getMinutes(), s = d.getSeconds(); if (h <= 9) { h = '0' + h; } if (m <= 9) { m = '0' + m; } if (s <= 9) { s = '0' + s; } var hex = document.querySelector('.hex'); var color = '#' + h + m + s; hex.style.background = color; hex.innerHTML = color; setTimeout(hexClock, 1 * 1000);
}
hexClock();
HExA Clock - Script Codes
HExA Clock - Script Codes
Home Page Home
Developer Luis Ulua
Username UluaWebDev
Uploaded January 09, 2023
Rating 3
Size 2,187 Kb
Views 8,096
Do you need developer help for HExA Clock?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Luis Ulua (UluaWebDev) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!