This is an example of a login page with a hover effect on the Login button, designed using CSS, HTML, and Bootstrap framework 4. The background image, font, and the Bootstrap style packages have been imported to the code with their URLs. The login page is given a width of 360px. The login card is given a background color of #3d3d3d and a box-shadow style of 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24). The input text fields are given a style set of font-family as 'Open Sans', sans-serif, background color as #f2f2f2, and font-size as 14px. The 'Login' button is given the styles of font-size as 18px, text-transform style as uppercase to automatically convert the text to uppercase, background color of #e84c3d, font color as #FFFFFF, and cursor style as pointer to get the hand cursor effect on hover. The arrow icon on the button is given the placement of right as -20px, and opacity as 0. In a hover event, the right value gets changed to 0, and opacity changes to 1, to implement the hover effect. Source: https://bootsnipp.com/snippets/Ekde7
This is an example of another profile card with caption and hover effects, designed using CSS, Html, and Bootstrap framework 4. The profile image and font style is imported to the form with their URLs. The body of the form is given a background color of #212121. The profile card is given a style set of background-color as #ffffff, height as 300px, width as 500px, transition-duration as 2s, and border-radius as 5px. The profile image is given a border style of 8px solid white, border-radius of 240px, and a transition duration value of 1.5s. In a hover event, the profile image takes a margin-left style of 200px, to create the hover effect. The profile name is displayed using a font-family style of 'Roboto', sans-serif, and a font-weight of 200, whereas the profile designation is displayed using the style set of font-family as 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, background-color as black, font color as white, font-size as 25px, height as 50px, and width as 400px. Source: https://mdbootstrap.com/snippets/jquery/charkiewicz/925996#js-tab-view
This is an example of a profile card with hover effects, designed using CSS, HTML, and Bootstrap framework 4. The profile image and font styles are imported to the code with their URLs. The body of the form is given the styles of background-color as #212121, and font-family as 'Roboto', sans-serif. The profile picture is given the styles of width as 100px, height as 100px, border-radius as 50px to get the circle shape, and border as 2px solid white. The title of the profile is displayed using the styles of font color as white, font-size as 1.3rem, and font-weight as 400, whereas the subtitle is given the styles of color as #c45c00, font-size as 0.9rem, and font-weight as 500. The profile card is given the styles of height and width of 300px, and a grayscale filter of grayscale(70%) blur(8px). In a hover event, the profile card takes a transform effect of scale(1.3). Source: https://mdbootstrap.com/snippets/jquery/charkiewicz/940342#js-tab-view
This is an example of a page menu with a corner effect, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. The font style is imported to the code with its URL. The form is given a background color of #212121. The menu list is given the styles of font-family as 'Raleway', Arial, sans-serif, text-align as center, text-transform as uppercase to automatically convert the text to uppercase, font-weight as 500, and letter-spacing as 1px. The menu items are displayed using a font color of rgba(255, 255, 255, 0.5). The menu items take a border-right and a border-top effect of 3px solid #9b59b6 to create the corner effect, in the active mode as well as the hover mode. The opacity of the menu items also gets changed to 1 on hover. JavaScript methods have been used to implement the corner effect only on individual items at a time. Source: https://mdbootstrap.com/snippets/jquery/charkiewicz/870091#js-tab-view
This is an example of a collection of sticky notes with hover effects, designed using CSS, HTML, and Bootstrap framework 4. The body of the form is given the styles of font-family as Arial,sans-serif, font-size as100%, margin as 3em, background as #666, and color as #fff. The title of the sticky notes has been displayed using the styles of font-size as140%, font-weight as bold, and padding-bottom as10px, whereas the subtitle is displayed using a font-size of 180%. 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 sticky notes, in an orderly manner. The sticky notes are given a box-shadow style of 5px 5px 7px rgba(33,33,33,.7). The notes are given three different background colors as #f6ff7a, #f26b6b, and #6bbcf2. The notes take a rotate animation of different values on hover, to create the scale-up animation. Source: https://mdbootstrap.com/snippets/jquery/jakubowczarek/893358#css-tab-view
This is an example of a search bar with hover effects, designed using CSS, HTML, and Bootstrap framework 4. The body of the form is given a background color of #e74c3c, and the height and the width are set as 100%. The search input is given a style set of font color as white, margin-top as 5px, line-height as 40px, and transition value as width 0.4s linear. The caret color of the search input is set as red. In a hover event. The search icon is given a style set of height and width as 50px, float as right, display as flex, justify-content as center, align-items as center, border-radius as 50% to get the circle shape, font color as white, and background-color as black. The search icon changes its background color to red and the font color to #fff. Source: https://bbbootstrap.com/snippets/awesome-search-bar-hover-17080978