Skip to content

Commit

Permalink
reviewed include.js
Browse files Browse the repository at this point in the history
  • Loading branch information
l-white committed Sep 14, 2023
2 parents 7250580 + 8e80d4d commit 6daba3e
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Art/1AA-Prajakta/trans1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.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.
22 changes: 22 additions & 0 deletions Art/1AA-Prajakta/trans1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!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 6daba3e

Please sign in to comment.