This is an example of a ping animation card, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. The icons and images are imported to the code with their URLs. The concept of Lists has been used with UL and LI components. UL element has been used with the child elements of LI to display the icons in an orderly manner. The colors and fonts are predefined as variables. JavaScript functions have been used to implement ping functions. The background color of the form is set as #EADBC9. The ping container is given the styles of position as relative, width as 200px, height as 300px, background-color as #E30074, border-radius as 6px, and padding as 30px. The title of the ping is given the styles of font-size as 16px, and line-height as 18px, whereas the number is given a font-size as 65px, and line-height as 50px, with an animation of .animation (ping, .3s, 1, normal, forwards, ease). The chart has the styles of margin-top as 40px, border-bottom as 2px solid #E8338F, and padding-bottom as 5px.
Source: https://codepen.io/builtbymax/pen/zYxgqBa
This is an example of a web form with date picker with click and drag options, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. The icons are imported to the code with their URLs. JavaScript functions have been used to implement the click and drag functions of the calendar. The background color of the form is given as #eee. The calendar is given a style set of font-size as 3vw, display as grid, grid-template-columns as repeat(7, 1fr), grid-gap as 0.25em 0, margin as auto; padding as 1em, background as #FFF, box-shadow as 0 1em 2em hsla(0, 0%, 0%, .25), and border-radius as .5em. A selected date takes the background color of #00AEF2. If a date range is selected, the dates between the start date and end date take the opacity value of 0.5. The grid-column-start point is given as 4, to start the first child of the calendar from the fourth column.
Source: https://codepen.io/team/keyframers/pen/qBEKMbo
This is a web form with an animated CSS loader designed using pure CSS, and Bootstrap framework 4. The colors and sizes of the loader are predefined as $p: 6.25em, $r: 1.5em, $b: 20*$r, $d: 2*($b - $r), $c: /#490a3d, /*#bd1550,*/ #e97f02/*, $n: length($c), $q: 20%, and $t: 1s. The background of the form is given the styles of background color as #333, and filter as drop-shadow(2px 2px 5px rgba(#000, .5)). The body of the form is given the styles of display as grid, place-content as center, height as 100vh, and animation as fsx 4*$t steps(1) infinite. The loader switches its background color between #490a3d, and #e97f02. It is given an animation of fbg 2*$n*$t steps(1) -3*$t infinite, mov $t infinite alternate, and exp $t ease-in infinite alternate. When the mov becomes 100%, it is given a transform of translatey($r) rotate(.5turn).
Source: https://codepen.io/thebabydino/pen/YzPoZyj
This is an airplane mode toggle switch with animations, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. JavaScript functions have been used to implement the animations on the toggle switch. The toggle button is designed to display animations when switched to the fly mode. The icons and images are imported to the code with their URLs. The colors are predefined as --color-background-off: #4e4e4e, --color-off: #494949, --shadow-off: 0 1.2rem 1.5rem #4d4d4d, --color-background-on: #2f86d5, --color-on: #1AB1FD, and --shadow-on: 0 1.2rem 1.5rem #2c82cc. The body of the form is given the styles of align-items as center, and background as var(--color-background-off). The width and height for the switch are defined as 31.1rem, and 13.8rem, while the border-radius is set as 10rem. The cursor style for the switch is set as pointer to get the hand cursor effect. The background color of the form is set to #848484 when the switch is in airport mode. The background color changes to #78c7fe when the button is switched to sky mode.
Source: https://codepen.io/KiarashZ/pen/dyPLpaP
This is an example of an animated photo gallery with hover effects, designed using HTML, CSS, and Bootstrap framework 4. The images are imported to the form with their URLs, whereas the media queries are used to increase the responsiveness of the form. The body of the form is given the styles of background as #222, font-family as "Fira Sans", sans-serif, and padding-right as 2rem. The image gallery is given a max-width of 1300px. The image wrapper is given the styles of justify-content as flex-end, background as #222, border-right as 2px solid #333, and position as relative. The image name is given the styles of text-transform as uppercase to automatically convert the text to uppercase, font-size as 40px, letter-spacing as 2px, and color as transparent. The first strip of images is given an animation of 60s move-it ease alternate infinite 5s, with a transforming effect of translateY(2%), whereas the second one is given 58s move-it-2 ease alternate infinite 5s with transform as translateY(-50%). The third one has an animation of 70s move-it ease alternate infinite 6s, with transform as translateY(2%), while the fourth one is given 65s move-it-2 ease alternate infinite 5.5s, with transform as translateY(-50%). The animation-play-state of the images become paused, in a hover event.
Source: https://codepen.io/oliviale/pen/RwNOPvx