This project demonstrates how to create an analog clock using SVG (Scalable Vector Graphics) and JavaScript. It serves as a template to understand the basics of SVG and how to manipulate SVG elements dynamically.
The goal of this app is to create a simple analog clock using SVG and JavaScript. This project aims to provide a basic understanding of how SVG works and how to use it in web development.
- Dynamic SVG creation and manipulation using JavaScript
- Responsive and scalable clock design
- Easy to integrate into any web project
-
Clone the repository:
git clone https://github.com/your-username/analog-svg-clock.git cd analog-svg-clock
-
Open the project in your preferred code editor.
-
Open
index.html
in a web browser to see the clock in action.
To use this clock in your own project:
-
Include the
svg-clock.js
script in your HTML file.<script type="module" src="js/svg-clock.js"></script>
-
Add the SVG container and initialize the clock.
<div class="text-center"> <svg id="clockContainer" viewBox="0 0 100 100"></svg> </div> <script> document.addEventListener("DOMContentLoaded", () => { const clock = ClockModule.createClock('clockContainer'); }); </script>
SVG (Scalable Vector Graphics) is an XML-based format for vector graphics. It allows for creating and manipulating images with high quality and scalability.
Key points about SVG:
- SVG is resolution-independent, meaning it scales perfectly at any size.
- SVG elements can be styled using CSS and manipulated using JavaScript.
- SVG files are text-based and can be compressed effectively.
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" />
</svg>
In this example:
width
andheight
define the size of the SVG container.circle
is an SVG element withcx
,cy
for center coordinates andr
for radius.
To learn more about SVG and how to use it in web development, check out the following resources:
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.