Jane Doe
17 |Frontend Developer
18 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Ea nemo consequatur ratione distinctio et nihil impedit consectetur vitae quo odio?
19 |├── .vscode └── settings.json ├── 3D └── 01 │ ├── index.html │ └── styles.css ├── Animation └── 01 │ ├── index.html │ └── styles.css ├── Buttons ├── 01 │ ├── index.html │ └── styles.css └── 02 │ ├── index.html │ └── styles.css ├── Cards ├── 01 │ ├── imgs │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ ├── index.html │ └── styles.css └── 02 │ ├── index.html │ ├── profile-photo.jpg │ └── styles.css ├── Gallery └── 01 │ ├── imgs │ ├── download (5).jpg │ ├── image01.jpg │ ├── image1.jpg │ ├── image2.jpg │ ├── image3.jpg │ ├── image4.jpg │ └── image5.jpg │ ├── index.html │ └── styles.css ├── Inputs └── 01 │ ├── index.html │ └── styles.css ├── Loaders ├── 01 │ ├── index.html │ └── style.css └── 02 │ ├── index.html │ └── styles.css ├── Media ├── 01 │ ├── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ ├── index.html │ └── styles.css ├── 02 │ ├── index.html │ ├── script.js │ └── styles.css └── 03 │ ├── bg-reveal.jpg │ ├── bg.jpg │ ├── index.html │ └── styles.css ├── Navigation ├── 01 │ ├── index.html │ └── style.css ├── 02 │ ├── index.html │ └── styles.css ├── 03 │ ├── index.html │ └── styles.css ├── 04 │ ├── index.html │ └── styles.css └── 05 │ ├── index.html │ └── styles.css ├── Text ├── 01 │ ├── index.html │ └── styles.css ├── 02 │ ├── index.html │ └── styles.css └── 03 │ ├── index.html │ └── styles.css └── z_Archive ├── Buttons ├── 01 │ ├── index.html │ └── style.css └── 02 │ ├── index.html │ └── style.css └── Cards ├── 01 ├── heart.png ├── index.html └── style.css ├── 02 ├── Jane Doe.jpg ├── index.html └── styles.css ├── 03 ├── image.jpg ├── index.html └── style.css ├── 04 ├── index.html └── style.css └── 05 ├── book.png ├── index.html └── styles.css /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /3D/01/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Backend Developer
18 |JavaScript
22 |Node.js
23 |Express
24 |MongoDB
25 |Fullstack Dev.
35 |React
39 |MongoDB
40 |Express
41 |Node.js
42 |Frontend Developer
52 |Next.js
56 |React
57 |TypeScript
58 |Framer Motion
59 |Frontend Developer
18 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Ea nemo consequatur ratione distinctio et nihil impedit consectetur vitae quo odio?
19 |11 | This is a Text 12 | Reveal Animation 13 |
14 | 15 | -------------------------------------------------------------------------------- /Text/03/styles.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@500&display=swap"); 2 | 3 | *, 4 | *::before, 5 | *::after { 6 | margin: 0; 7 | padding: 0; 8 | box-sizing: border-box; 9 | } 10 | 11 | body { 12 | font-family: Epilogue, sans-serif; 13 | background-color: #090909; 14 | color: white; 15 | height: 100vh; 16 | display: grid; 17 | place-items: center; 18 | } 19 | 20 | .title { 21 | font-size: 4rem; 22 | font-weight: bold; 23 | } 24 | 25 | .title span { 26 | --duration: 2s; 27 | display: block; 28 | position: relative; 29 | overflow: hidden; 30 | margin-block: 4px; 31 | color: transparent; 32 | animation: reveal 1s calc(var(--delay) + var(--duration)) forwards; 33 | } 34 | 35 | .title span::before { 36 | content: ""; 37 | position: absolute; 38 | top: 0; 39 | left: 0; 40 | width: 100%; 41 | height: 100%; 42 | background-color: #1d59ac; 43 | transform: scaleX(0); 44 | transform-origin: left; 45 | animation: slideIn var(--duration) var(--delay) forwards, 46 | slideOut 1s calc(var(--delay) + var(--duration)) forwards; 47 | } 48 | 49 | @keyframes reveal { 50 | to { 51 | color: white; 52 | } 53 | } 54 | 55 | @keyframes slideIn { 56 | from { 57 | transform: scaleX(0); 58 | } 59 | to { 60 | transform: scaleX(1); 61 | } 62 | } 63 | 64 | @keyframes slideOut { 65 | from { 66 | transform: translateX(0); 67 | } 68 | to { 69 | transform: translateX(105%); 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /z_Archive/Buttons/01/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |HOVER ME
18 |Lorem ipsum, dolor sit amet consectetur adipisicing elit. Corrupti porro quis.
18 |DC Universe
18 |2023
20 |Type of Work
17 |