Skip to content

Commit

Permalink
Merge pull request #1729 from zero-to-mastery/prajaktakap00r-1AA-Praj…
Browse files Browse the repository at this point in the history
…akta

Prajaktakap00r 1 aa prajakta
  • Loading branch information
l-white committed Sep 14, 2023
2 parents 7250580 + d90ac3a commit ffb9dfd
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Art/1AA-Prajakta/trans1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.circle {
width: 300px;
height: 300px;
background-color: magenta;
transition: background-color 1s 1s;
}
.circle:hover {
background-color: cyan;
border-radius: 50%;
}
section div {
width: 100px;
height: 100px;
background-color: turquoise;
margin: 20px 0;
transition: margin-left 3s;
}
section:hover div {
margin-left: 500px;
}
Binary file added Art/1AA-Prajakta/trans1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions Art/1AA-Prajakta/trans1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TRANSITION</title>
<link rel="stylesheet" href="trans1.css" />
</head>
<body>
<h1>transition</h1>
<div class="circle"></div>
<section>
<div></div>
<div></div>
<div></div>
<div></div>
</section>
</body>
</html>
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,13 @@ let cards = [
author: 'Mehul1011',
githubLink: 'https://github.com/mehul1011'
},
{
artName: 'Flex Box Transition',
pageLink: './Art/1AA-Prajakta/trans1.html',
imageLink: './Art/1AA-Prajakta/trans1.gif',
author: 'prajaktakap00r',
githubLink: 'https://github.com/prajaktakap00r'
},
{
artName: 'Loading Dots',
pageLink: './Art/devSergiu/index.html',
Expand Down

0 comments on commit ffb9dfd

Please sign in to comment.