• Latest
  • Featured
This is an example of displaying the timeline data in a card view designed with HTML and CSS. The image has been set with the use of the image element by adding the image URL of the source image. This image element has been wrapped with the profile pic class and the profile pic class has the styles of width as 30px, height as 30px, display as inline-block, float as right, position as relative and the image styles, width as 100% and border-radius as 50%. By setting the radius as 50% it displays the shape as a circle. The notification styles have the position as absolute, width as 5px, height as 5px, border-radius as 50%, top as 2px, right as 2px and background as $pink. The header has the styles of background as the image URL, background-size as cover, color as white and position as relative. The credits link has the style of left as 10px so it will be displayed on the left whereas the video link has the style of right as 10px which will be displayed on the right. Source: https://codepen.io/abisz/pen/qaEOEm

Timeline UI

4.3.1
This is an example of an animated timeline designed with the use of HTML, CSS, and JavaScript. The poster class which is applied for the complete page has the styles of height as 100vh, width as 100%, background-size as cover, background-position as center, background image as the image URL, width as 95%, color as white, padding-top as 5.5rem, font-weight as $font-weight—semi, font size as 2em, and transition as all 400ms ease. JavaScript functions are used to apply styles to the classes dynamically on the scroll event so the timeline will be displayed as you scroll down the page through the timeline. The timeline is implemented with the styles of position as absolute, margin-left as 50%, transform as translateX (-50%), and display as none. The day sum has the styles of color as white, font-weight as $font-weight—light, font size as .8em, display as block, margin-bottom as 1.5em and line-height as 1.5. Source: https://codepen.io/vincebrown/pen/BNazqL
This is an example of a timeline view with four responsive panels designed using HTML and CSS. The panels consist of a background image and will be visible with the mouse hover event. The body has the styles of font-family as 'Source Sans Pro', Helvetica Neue, Helvetica, Arial, sans-serif, font size as 16px and line-height as 1.75. The timeline has the styles of the display as flex, background color as #031625 and the mouse hover has been implemented by adding the styles of width as 23.3333% on the mouse hover. The class of tl-item has the styles of transform as translate3d(0, 0, 0), position as relative, width as 25%, height as 100vh, min-height as 600px, color as #fff, overflow as hidden and transition as width 0.5s ease. To apply the transition effects, the value has been set as translate3d (0, 0, 0). The year is set with the styles of position as absolute, top and left as 50%, transform as translateX(-50%) translateY(-50%) and z-index as 1. Source: https://codepen.io/jeffglenn/pen/KNYoKa
This is a template for a timeline view designed with CSS, HTML, and JavaScript. The timeline elements have been implemented with the use of lists and the timeline has been designed as a bulleted list with the use of UL. In the CSS file, variables are declared after @ element to avoid repeating the same value. The body has the styles of font size as 16px and font family as 'Lato', sans-serif. The background color of the content is set to light green with the code #67CC8E. JavaScript functions have been created and used to check the location of the last element and make the hidden data sections visible as the user scrolls down. The hidden class will be added dynamically and the hidden class consists of the style of opacity element with its value set to 0. Source: https://codepen.io/ArnaudBalland/pen/rLeQgd
This is a sample example of displaying the timeline with the use of HTML, CSS, and JavaScript. The timeline has been implemented with the use of div and the timeline view has been implemented with CSS styles. The wrapper class has the styles of background color as #42A5F5, width as 100%, min-height as 100vh, height as 100%, font as normal 16px/26px Open Sans Condensed, sans-serif, color as #fff, padding as 100px 20px 200px and box-sizing as border-box. The JavaScript function has been created to apply the scroll and check for the fade. The JavaScript function removeClass removes the current classes of style whereas addClass function appends the new classes of styles to the elements dynamically. Each timeline section has the styles of background color as #f4f4f4, color as #777, padding as 15px, margin as 60px 20px, width as 300px, position as relative, border-radius as 4px and transition as all 0.3s ease-in-out. Source: https://codepen.io/rprajapatii/pen/AXoWyd
This is an example of displaying the timeline in a card view with the use of HTML and CSS. The Main div consists of two different divs. One is to display the title section or the header section and the other one to display the timeline. The heading is set with the h3 element with the styles of font-family as inherit, font size as 2rem, line spacing as 0.1rem, color as #fff, font-weight as normal, and margin as 0. The timeline has the styles of padding as 3rem 2rem !important, margin as 0, padding as 0, list-style as none, position as relative, z-index as 2, content as empty, position as absolute, width as 4px, background as #fff, top as 0, right as auto, left as 25px, height as 100%, z-index as -1 and box-shadow as 0 0 8px rgba(0,0,0,0.085), 0 1px 0 rgba(0,0,0,0.02). The time dot has been implemented with height and width as 1.5rem, background as #fff, border-radius as 2rem, flex as 0 0 1.5rem and box-shadow as 0 0 8px $green. Source: https://codepen.io/hello-ajayrawat/pen/EvxNbm
This is an example of a responsive timeline designed using HTML and CSS. The timeline elements have been implemented with the use of lists and the timeline has been designed as a bulleted list with the use of UL. The timeline style class is appended to the UL element. The main styles which are implemented under timeline class are line-height as 1.4em, list-style as none, margin as 0, padding as 0, width as 100% and h2 to h6 with line-height as inherit value. Media queries have been used in the CSS to make the timeline responsive by setting the min-width as 768px, and min-width as 992px. To apply the mouse hover event on the timeline marker, the hover event has been used in the CSS with the background value set as #FF6B6B. The CSS variables have been declared after the "@" mark which helps to reuse it in several places other than setting the value repeatedly. Source: https://codepen.io/brady_wright/pen/NNOvrW
This is an advanced timeline template with an extend option, designed with HTML, CSS, and JavaScript. The timeline elements have been implemented with the use of lists and the timeline has been designed as a bulleted list with the use of UL. The body is designed with the styles of margin as 0, padding as 0, background color as #ff6d6d and font-family as Arial. The box class that displays the timeline data has the styles of margin as 0 10%, height as 630px, overflow as hidden and padding as 10px 0 40px 60px. The JavaScript functions have been used to implement the on click functions by adding the style classes dynamically. To hide the data section until a click event, the display element of CSS is set as whereas to display the data section after a click event, the display element is set as block. Source: https://codepen.io/mo7amedk7alid29/pen/dRoMwo