├── 3D Animated Sphere ├── index.html ├── script.js └── style.css ├── 3D-Text-Animation ├── index.html └── style.css ├── 3dFlipCardAnimation ├── index.html └── style.css ├── Animated-Buttons ├── button_style.css └── index.html ├── Bicycle Using HTML5 and CSS3 ├── index.html └── style.css ├── Birds Flyby animation ├── birds.css └── index.html ├── Box rotating ├── image │ ├── img 1 (1).jpg │ ├── img 1 (2).jpg │ ├── img 1 (3).jpg │ ├── img 1 (4).jpg │ └── topimg.png ├── index.html └── style.css ├── CSS-Loaders ├── index.html └── loader.css ├── CSSTextReveal └── index.html ├── Carousel of pictures ├── index.html ├── script.js └── style.css ├── Contributing.md ├── DNA_using_CSS ├── dna.html ├── script.js └── style.css ├── Fom ├── app.js ├── index.html ├── style.css └── svg │ ├── character.svg │ ├── elastic.svg │ └── tick-mark.svg ├── GlowingSocialMediaIcons ├── index.html └── style.css ├── Indian Flag ├── index.html ├── indian flag.png ├── readme.md └── style.css ├── LICENSE.md ├── LoginFormAnimation ├── index.html └── style.css ├── NewYork-city-animation ├── images │ ├── boat.png │ ├── cloud.png │ ├── newyork.png │ ├── plane.png │ └── thumbnail.png ├── index.html └── style.css ├── QuizApp ├── index.html ├── quiz.css └── quiz.js ├── README.md ├── Ring wave animation ├── index.html └── style.css ├── Tab-Component ├── index.html └── style.css ├── Text Water Effect ├── index.html └── style.css ├── Typing effects ├── index.html └── styles.css ├── Wires pull SVG loader ├── index.html ├── script.js └── style.css ├── changing emoji rating ├── index.html └── style.css ├── click_counter ├── counter.css ├── counter.html └── counter.js ├── css-loaders-tutorial-starter-files ├── README.md ├── index.html └── styles.css ├── happy-toggle ├── happy.css └── index.html ├── hover_color_animation ├── index.html ├── script.js └── style.css ├── image hover ├── index.html └── style.css ├── playlist-carousel-css-only ├── index.html ├── script.js └── style.css ├── sticker animation ├── index.html └── style.css └── terminal-text-effect └── index.html /3D Animated Sphere/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |Go check the index.html file for the code!
46 | 47 | 48 | -------------------------------------------------------------------------------- /Carousel of pictures/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |Image Name and Description
16 | 17 |
13 |
14 |
Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live 24 | the blind texts. 25 | Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A 26 | small river named 27 | Duden flows by their place and supplies it with the necessary.
28 |A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring 31 | which I enjoy with my 32 | whole heart. I am alone, and feel the charm of existence in this spot, which was created for the 33 | bliss of souls like 34 | mine. 35 |
36 |The quick, brown fox jumps over a lazy dog. DJs flock by when MTV ax quiz prog. Junk MTV quiz graced 39 | by fox whelps. 40 | Bawds jog, flick quartz, vex nymphs. Waltz, bad nymph, for quick jigs vex! Fox nymphs grab 41 | quick-jived waltz. Brick quiz 42 | whangs jumpy veldt fox.
43 |Lorem ipsum dolor sit amet consectetur, adipisicing elit. Perspiciatis odit veritatis exercitationem 46 | molestiae quos qui! Similique ad eius a. Nihil, necessitatibus vitae.
47 |This the subtitle.
18 | 19 | 20 | -------------------------------------------------------------------------------- /Typing effects/styles.css: -------------------------------------------------------------------------------- 1 | :root{ 2 | --bg-color:hsl(49 37% 94%); 3 | --typing-speed:4s; 4 | --char:18; 5 | } 6 | 7 | body{ 8 | margin: 0; 9 | font-family: "Source Code Pro",sans-serif; 10 | min-height: 100vh; 11 | place-content: center; 12 | display: grid; 13 | text-align: center; 14 | background-color: var(--bg-color); 15 | } 16 | 17 | h1{ 18 | font-size: clamp(1rem ,3vw + 1rem,4rem); 19 | color: teal; 20 | position: relative; 21 | font-family: "Source Code Pro",monospace; 22 | position: relative; 23 | width: max-content; 24 | } 25 | 26 | h1::before, 27 | h1::after{ 28 | content: ''; 29 | position: absolute; 30 | top: 0; 31 | left: 0; 32 | bottom: 0; 33 | right: 0; 34 | } 35 | 36 | h1::before{ 37 | background-color: var(--bg-color); 38 | animation: 39 | typewrite var(--typing-speed) steps(var(--char)) 1s forwards; 40 | } 41 | 42 | h1::after{ 43 | width: 0.125em; 44 | background-color: rgb(15, 15, 16); 45 | animation: typewrite var(--typing-speed) steps(var(--char)) 1s forwards, 46 | blink 750ms steps(18) infinite; 47 | } 48 | 49 | @keyframes typewrite{ 50 | to{ 51 | left:100%; 52 | } 53 | } 54 | 55 | @keyframes blink{ 56 | to{ 57 | background-color: transparent; 58 | } 59 | } 60 | .sub{ 61 | color:rgba(0, 0, 0, 0.916); 62 | font-size: 1rem; 63 | font-weight: 400; 64 | opacity: 0; 65 | transform: translateY(3rem); 66 | animation: fadeInUp 6s linear var(--typing-speed) forwards; 67 | } 68 | 69 | @keyframes fadeInUp{ 70 | to{ 71 | opacity: 1; 72 | transform: translateY(0); 73 | } 74 | } -------------------------------------------------------------------------------- /Wires pull SVG loader/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |ZOOM IN
25 |ZOOM OUT
29 |BLUR
33 |GRAYSCALE
39 |TEXT ON HOVER
44 |50 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam 51 | lorem nunc, sollicitudin a nisi sodales, imperdiet dignissim enim. 52 |
53 |56 | TEXT BOX ON HOVER 57 |
58 |FLASHING
64 |BORDER
68 |72 | BRIGHTEN IMAGE 73 |
74 |Spinner created with only HTML and CSS
7 | 8 | 9 | 21 |Spinner created with custom SVG and CSS Animation
22 |