Css Final Microproject
Css Final Microproject
Semester: FIFTH(5TH)
115.Sanskruti Kakade
133.Monika More
135.Aditi More
Maharashtra State
Board of Technical Education, Mumbai
(Autonomous) (ISO-9001-2015) (ISO/IEC 27001:2013)
CERTIFICATE
Date:
Seal of institute
1. Topic given by
subject teacher and 15/07/24 15/07/24 Samiksha Gaikwad
discussed with given
members.
5. Collection of
information related to
the topic. 12/08/24 12/08/24 Monika More
6. Analyzed the
collected data and
finalize structure of 28/08/24 28/08/24 Sanskruti Kakade
the project.
7. Report preparation.
02/09/24 02/09/24 Samiksha Gaikwad
<script>
const canvas = document.getElementById('solarSystem');
const ctx = canvas.getContext('2d');
// Sun properties
const sun = {
x: canvas.width / 2,
y: canvas.height / 2,
radius: 30,
color: '#FFD700',
name: 'Sun'
};
// Draw Stars
function drawStars() {
ctx.fillStyle = '#FFFFFF';
stars.forEach(star => {
ctx.beginPath();
ctx.arc(star.x, star.y, star.radius, 0, Math.PI * 2);
ctx.fill();
});
}
// Draw Sun
function drawSun() {
ctx.beginPath();
ctx.arc(sun.x, sun.y, sun.radius, 0, Math.PI * 2);
ctx.fillStyle = sun.color;
ctx.fill();
ctx.closePath();
ctx.beginPath();
ctx.arc(planetX, planetY, planet.radius * scale, 0, Math.PI * 2);
ctx.fillStyle = gradient;
ctx.fill();
ctx.closePath();
// Animation loop
function animate() {
ctx.clearRect(0, 0, canvas.width, canvas.height); // Clear the canvas
OUTPUT
Topic given by
subject teacher Samiksha Gaikwad
1. 23/09/24 23/09/24
and discussed on
given members.
Collection of
information Monika More
2. 23/09/24 23/09/24
related
to the topic.
Planning of
3. 30/09/24 30/09/24 Aditi More
project.
Analyze the
collected data and
4. finalize structure 30/09/24 30/09/24 Sanskruti Kakade
of
data
Submission of
5. 14/10/24 14/10/24 Samiksha Gaikwad
proposal
Distribution of
task and
discussion of role 14/10/24 14/10/24
6. Sanskruti Kakade
and
responsibilities of
each other.