React js UI example. Vertical Timeline with lines

React js UI example and template, Vertical Timeline with lines! . Take a look at this UI example and see how it can enhance your project. Your can copy or download the code and use it in your project. Don't forget to browse our library of other free React Native templates for even more design and functionality inspiration. Happy coding!
Tags: timeline,vertical

1. First, we need fresh reactjs setup, and for that, we need to run below commands into out terminal, and also we should have latest node version installed on our system:

npx create-react-app my-awesome-project

cd my-awesome-project

npm start

2. Now we need to run below commands into our project terminal to get bootstrap and related modules into our reactjs application:

npm install [email protected] --save

npm start //For start project again

3. Finally for the main output, we need to add below code into our my-awesome-project/src/App.js file or if you have fresh setup then you can replace my-awesome-project/src/App.js file code with below code:

import React from 'react';
import './App.css';
import 'bootstrap/dist/css/bootstrap.min.css';


function App() {
  
	return (
		<div>
			<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/MaterialDesign-Webfont/5.3.45/css/materialdesignicons.min.css" integrity="sha256-nwNjrH7J9zS/Ti4twtWX7OsC5QdQHCIKTv5cLMsGo68=" crossorigin="anonymous" />

<div class="container">
<div class="row">
<div class="col-lg-12">
    <div class="card">
        <div class="card-body">
            <h4 class="card-title mb-5">Vertical Timeline</h4>

            <div class="row justify-content-center">
                <div class="col-lg-10">
                    <ul class="verti-timeline list-unstyled" dir="ltr">
                        <li class="event-list">
                            <div class="timeline-icon">
                                <i class="mdi mdi-adjust bg-success"></i>
                            </div>
                            <div class="event-content p-4">
                                <h5 class="mt-0 mb-3 font-18">Timeline Event One</h5>
                                <div class="text-muted">
                                    <p class="mb-2">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et</p>
                                    <p class="mb-0">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit</p>
                                </div>
                            </div>
                            <div class="event-date bg-primary">
                                <h5 class="mt-0">02</h5>
                                <p class="mb-0 text-white-50">June</p>
                            </div>
                        </li>

                        <li class="event-list">
                            <div class="timeline-icon">
                                <i class="mdi mdi-adjust bg-danger"></i>
                            </div>
                            <div class="event-content p-4">
                                <h5 class="mt-0 mb-3 font-18">Timeline Event Two</h5>
                                <div class="text-muted">
                                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo enim ipsam voluptatem quia voluptas sit</p>
                                    <button type="button" class="btn btn-primary waves-effect waves-light">See more detail</button>
                                </div>
                            </div>
                            <div class="event-date bg-primary">
                                <h5 class="mt-0">05</h5>
                                <p class="mb-0 text-white-50">June</p>
                            </div>
                        </li>

                        <li class="event-list">
                            <div class="timeline-icon">
                                <i class="mdi mdi-adjust bg-primary"></i>
                            </div>
                            <div class="event-content p-4">
                                <h5 class="mt-0 mb-3 font-18">Timeline Event Three</h5>
                                <div class="text-muted">
                                    <p class="mb-4">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et</p>
                                    <img src="assets/images/small/img-1.jpg" alt="" class="rounded m-1" style={{/*width: 120px;*/}}/>
                                    <img src="assets/images/small/img-2.jpg" alt="" class="rounded m-1" style={{/*width: 120px;*/}}/>

                                </div>
                            </div>
                            <div class="event-date bg-primary">
                                <h5 class="mt-0">07</h5>
                                <p class="mb-0 text-white-50">June</p>
                            </div>
                        </li>
                        
                        <li class="event-list">
                            <div class="timeline-icon">
                                <i class="mdi mdi-adjust bg-warning"></i>
                            </div>
                            <div class="event-content p-4">
                                <h5 class="mt-0 mb-3 font-18">Timeline Event Four</h5>
                                <div class="text-muted">
                                    <p class="mb-0">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo enim ipsam sit aspernatur aut odit aut fugit</p>
                                </div>
                                
                            </div>
                            <div class="event-date bg-primary">
                                <h5 class="mt-0">08</h5>
                                <p class="mb-0 text-white-50">June</p>
                            </div>
                            
                        </li>
                    </ul>

                </div>
            </div>
            
        </div>
    </div>
    
</div>
</div>
</div>
		</div>
	);
}
export default App;

4. Now we need to add below code into our my-awesome-project/src/App.css file :

body{
    background:#eee;
    margin-top:20px;
}
.verti-timeline {
    border-left: 3px dashed #e9ecef;
    margin: 0 10px;
}
.verti-timeline .event-list {
    position: relative;
    padding: 40px 15px 40px;
    border-top: 3px solid #e9ecef;
}
.verti-timeline .event-list .event-date {
    position: absolute;
    right: 0;
    top: -2px;
    padding: 12px;
    color: #fff;
    border-radius: 0 0 7px 7px;
    text-align: center;
}
.verti-timeline .event-list .event-content {
    position: relative;
    border: 2px solid #e9ecef;
    border-radius: 7px;
    text-align: center;
}
.verti-timeline .event-list .event-content::before {
    content: "";
    position: absolute;
    height: 40px;
    width: 75%;
    top: -42px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-left: 12px double #e9ecef;
    border-right: 12px double #e9ecef;
}
.verti-timeline .event-list .timeline-icon {
    position: absolute;
    left: -14px;
    top: -10px;
}
.verti-timeline .event-list .timeline-icon i {
    display: inline-block;
    width: 23px;
    height: 23px;
    line-height: 23px;
    font-size: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
}
.verti-timeline .event-list:last-child {
    padding-bottom: 0;
}
@media (min-width: 769px) {
    .verti-timeline {
        margin: 0 60px;
    }
    .verti-timeline .event-list {
        padding: 40px 90px 60px 40px;
    }
}
@media (max-width: 576px) {
    .verti-timeline .event-list .event-date {
        right: -20px;
    }
}
.card {
    border: none;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 0 13px 0 rgba(236,236,241,.44);
    box-shadow: 0 0 13px 0 rgba(236,236,241,.44);
}

Similar snippets

React js template and ui example bs4 Horizontal timeline

bs4 Horizontal timeline

React js template and ui example timeline events

timeline events

React js template and ui example bs4 beta profile and timeline

bs4 beta profile and timeline

React js template and ui example user profile with timeline photos and setting

user profile with timeline photos and setting

React js template and ui example bs5 dark footer

bs5 dark footer

React js template and ui example timeline events area

timeline events area

React js template and ui example Sidebar left menu

Sidebar left menu

React js template and ui example bs4 profile contacts

bs4 profile contacts