This is an example of a carousel with a reversed easing effect, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. The fonts used in the form are imported to the code using its URL. 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 carousel items in an orderly manner. JavaScript functions have been used to implement the carousel feature. The body of the form is given a background-color of #141316, and font color of #FAFAFA. The arrow buttons are given the styles of background-color as transparent, width as 65px, padding as 20px, transition as opacity 200ms, and transform as translate3d(0, -50%, 0). In a hover or focus event, the button changes its opacity to 0.6. The carousel item heading has the styles of text-transform as uppercase to automatically transform the text to uppercase, font-size as 1.2rem, and letter-spacing as 0.05em, whereas the item quote is given the styles of font-size as 1.1rem, line-height as 1.4, and letter-spacing as 0.03em. Source: https://codepen.io/michellebarker/pen/OaYpWp
This is an example of a web form that consists of feedback reactions icons, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. The feedback icons 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. JavaScript functions are used to implement the active status of the feedback icons. The number of feedback icons is five with angry, sad, ok icons and two happy icons. Each icon has three sections as eye left, eye right, and mouth, which is used to implement the reactions. The colors of the feedback icons are predefined as normal: #ECEAF3, normal-shadow: #D9D8E3, normal-mouth: #9795A4, normal-eye: #595861, active: #F8DA69, active-shadow: #F4B555, active-mouth: #F05136, active-eye: #313036, active-tear: #76b5e7, and active-shadow-angry: #e94f1d. The cursor style for the icons is given as pointer to get the hand cursor effect on a hover event. The reaction animations are created by giving different styles to the eyes and mouth sections of each icon. Source: https://codepen.io/aaroniker/pen/mdyYBPP
This is an example of a navigation bar with hover effects, designed using HTML, CSS, and Bootstrap framework 4. 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 menu items in an orderly manner. The body of the form is given the styles of display as table, width as 100%, height as 100vh, background as #222, font-family as 'Roboto Condensed', sans-serif, font-size as 26px, font-weight as 600, letter-spacing as 5px, and text-transform style as uppercase to automatically convert the text to uppercase. The menu items are given a display style as inline-block. The three menu items are given three different background colors as #FFC56C, #6EC5E9, and #FF5959. The menu items are also given a cursor style as pointer to get the hand cursor effect on a hover event. The container of the menu items, take the background color of #fff in a hover event, generating an underline effect on the menu items. Source: https://codepen.io/rauldronca/pen/qaEGrb
This is an example of a menu bar with gooey style animations, designed using HTML, CSS, and Bootstrap framework 4. The CSS style sheet is imported to the code with its URL. The body of the form is given the styles of background as #673ab7, color as white, and text-align as center. The menu icon is given the styles of background as #673ab7, border-radius as 100%;, width and height as 80px, margin-left as -40px, font color as white, text-align as center, line-height as 80px, transform as translate3d(0,0,0), and transition as transform ease-out 200ms. The child elements of the menu are also given the styles of background as #673ab7, which turns to white in a hover event. The buttons are given a cursor style as pointer to get the hand cursor effect in a hover event, whereas the menu button is given a gooey filter, which is imported to the code with its URL. The menu button takes the style of transform as scale(1.2,1.2) translate3d(0,0,0), in a hover event. Source: https://codepen.io/lbebber/pen/pvwZJp
This is an example of a responsive full-screen overlay navigation menu, designed using HTML, CSS, JavaScript and Bootstrap framework 4. 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 child elements of the navigation bar, in an orderly manner. Media quarries have been used to increase the responsiveness of the form whereas the JavaScript functions have been used to implement the toggle function of the navigation bar. The content of the form is given the styles of text-align as left, padding as 10px 0, font color as #ddd, line-height as 25px, font-size as 22px, and font-family as 'redacted_scriptbold', Arial, serif. The title of the content has the styles of font-family as 'redacted_scriptbold', Arial, serif, font-size as 30px, color as #4e4e4e, and line-height as 30px. The list items of the navigation bar are given different font colors, which change to #414141, in a hover event. Source: https://codepen.io/nikhil/pen/wvzul
This is an example of a navigation bar with expanding effects, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. The fonts are imported to the code with its URL whereas the JavaScript functions have been used to implement the expanding function of the navigation icon. 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 child elements of the navigation bar, in an orderly manner. The body of the form is given the styles of background-color as #28363D, font-family as "Roboto", and color as #fff The button is given the styles of width and height as 50px, margin as 70px 97px, padding as 10px, and cursor style as pointer to get the hand cursor effect on a hover event. The menu container is given the styles of overflow as hidden to hide the content when inactive, background as #212121, width as 250px, box-shadow as 0 0 10px #000, and transform as translateZ(0) translateX(-100%). The child elements of the menu take the style of text-decoration as line-through, in a hover event. Source: https://codepen.io/MilanMilosev/pen/GJbGJq
This is an example of a sidebar layout with hover effects and a color theme, designed using HTML, CSS, JavaScript and Bootstrap framework 4. The JavaScript functions have been used to implement the day and night themes in a click event. The icons and images are imported to the code with the URLs. The colors used in the form are predefined as variables. The body of the form is given the styles of font-family as 'Inter UI', system-ui, font-size as 1.6rem, and background as #F6FBFF. The sidebar has the styles of background as #2B3137, font color as #FFFFFF, width as 100%, max-width as 300px, border-radius as 1rem, transition as all 200ms ease, and box-shadow as 0px 5px 12px rgba(black, .1), 0px 3px 6px rgba(black, .06). The menu buttons are given the styles of padding as 1rem 1.5rem, background as linear-gradient(to top, #2B3137, #394047), font color as #FFFFFF, border-radius as .3rem, cursor as pointer to get the hand cursor effect, box-shadow as 0px 3px 6px rgba(black, .15), and text-shadow as 0px 1px 1px rgba(black, .2). The buttons take the styles of background as #4BC6E9, and font color as #FFFFFF, in the night mode. Source: https://codepen.io/ryanparag/pen/gZEbOq
This is an example of a full-screen menu layout with a toggle button, designed using HTML, CSS, and Bootstrap framework 4. 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 menu items in an orderly manner. The body of the form is given a linear gradient color of linear-gradient (SlateBlue, RoyalBlue ), whereas the toggle button has the styles of position as absolute, top and right as 15px, border-radius as 3px, and cursor as pointer to get the hand cursor effect in a hover event. The toggle button takes a transform effect of rotate(225deg) when it's checked. The menu container has the styles of display as table to display the items in a table order, width as 100%, height as s('calc(100% /'+$btnscount+')'), border-bottom as 1px solid rgba(white, .3), background as rgba(white, .15), perspective as 0px, transform as rotateX(-90deg) scale(.5), and transition as all .3s ease .1s. The menu items are given the styles of display as table-cell, vertical-align as middle, text-align as center, font-size as 2.5em, letter-spacing as .2em, color as white, text-shadow as 0 0 3px rgba(black, .3), font-family as 'Helvetica', sans-serif, and font-weight as 100. The menu items change their background to rgba(white, .1), in a hover event. Source: https://codepen.io/shakdaniel/pen/raWBOb