Giter VIP home page Giter VIP logo

analog-clock's Introduction

Analog Clock

This is a simple web page that displays an analog clock. The clock displays the current time in hours, minutes, and seconds, and updates itself in real-time. It also includes a switch that allows the user to switch between light and dark modes.

Getting Started

To run the analog clock on your local machine, simply clone this repository and open the index.html file in your web browser.

git clone https://github.com/AntonyGN/Analog-clock.git
cd analog-clock

Usage

You can customize the appearance of the clock by editing the CSS code in the style.css file. For example, you can change the colors, size, and position of the clock and its hands.

/* Example CSS code */
.container .clock {
  display: flex;
  height: 500px;
  width: 500px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #f6f7fb;
}
.hand.minute {
  height: 150px;
  width: 6px;
  background: #18191a;
}

You can also modify the JavaScript code in the script.js file to add new features or change the clock behavior.

/* Example JavaScript code */
function updateClock() {
  const now = new Date();
  const seconds = now.getSeconds();
  const minutes = now.getMinutes();
  const hours = now.getHours() % 12;
}

License

This project is licensed under the MIT License.

analog-clock's People

Contributors

antonygn avatar

Watchers

 avatar

analog-clock's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.