React js UI example. creative team with right content on hover

React js UI example and template, creative team with right content on hover! . 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: team,creatitve

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 href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<section id="team" class="team-area section-padding">    
	<div class="container">
		<div class="section-title text-center">
			<h2>Creative team</h2>
			<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
		</div>				
		<div class="row">
			<div class="col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s" data-wow-offset="0" style={{/*visibility: visible; animation-duration: 1s; animation-delay: 0.2s; animation-name: fadeInUp;*/}}>
				<div class="our-team">
					<img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt=""/>
					<div class="team-content">
						<h3 class="title">Marina Mojo</h3>
						<span class="post">Developer</span>							
						<ul class="social">
							<li><a class="fa fa-facebook" href="#/"></a></li>
							<li><a class="fa fa-twitter" href="#/"></a></li>
							<li><a class="fa fa-youtube" href="#/"></a></li>
						</ul>
					</div>
				</div>
			</div>
			<div class="col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.3s" data-wow-offset="0" style={{/*visibility: visible; animation-duration: 1s; animation-delay: 0.3s; animation-name: fadeInUp;*/}}>
				<div class="our-team">
					<img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt=""/>
					<div class="team-content">
						<h3 class="title">Ayoub Fennouni</h3>
						<span class="post">Logo Expert</span>							
						<ul class="social">
							<li><a class="fa fa-facebook" href="#/"></a></li>
							<li><a class="fa fa-twitter" href="#/"></a></li>
							<li><a class="fa fa-youtube" href="#/"></a></li>
						</ul>
					</div>
				</div>
			</div>
			<div class="col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.4s" data-wow-offset="0" style={{/*visibility: visible; animation-duration: 1s; animation-delay: 0.4s; animation-name: fadeInUp;*/}}>
				<div class="our-team">
					<img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt=""/>
					<div class="team-content">
						<h3 class="title">Mark Linomi</h3>
						<span class="post">Marketer</span>							
						<ul class="social">
							<li><a class="fa fa-facebook" href="#/"></a></li>
							<li><a class="fa fa-twitter" href="#/"></a></li>
							<li><a class="fa fa-youtube" href="#/"></a></li>
						</ul>
					</div>
				</div>
			</div>
			<div class="col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.5s" data-wow-offset="0" style={{/*visibility: visible; animation-duration: 1s; animation-delay: 0.5s; animation-name: fadeInUp;*/}}>
				<div class="our-team">
					<img src="https://bootdey.com/img/Content/avatar/avatar5.png" alt=""/>
					<div class="team-content">
						<h3 class="title">Amira Yerden</h3>
						<span class="post">UI/UX Designer</span>							
						<ul class="social">
							<li><a class="fa fa-facebook" href="#/"></a></li>
							<li><a class="fa fa-twitter" href="#/"></a></li>
							<li><a class="fa fa-youtube" href="#/"></a></li>
						</ul>
					</div>
				</div>
			</div>
		</div>
	</div>
</section>
		</div>
	);
}
export default App;

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

body{margin-top:20px;
background:#eee;
}
.our-team{
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 40px -10px rgba(0,64,128,.2);
}
.our-team img{
    width: 100%;
    height: auto;
    position: relative;
    right: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.our-team:hover img{
    right: 60%;
}
.our-team .team-content{
    width: 80%;
    height: 100%;
    background: #fcfcfc;
    padding: 20% 30px 0;
    position: absolute;
    top: 0;
    right: -80%;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.our-team:hover .team-content{
    right: 0;
}
.our-team .title {
	font-size: 22px;
	color: #554c86;
	margin: 0 0 5px 0;
	font-weight: 500;
}
.our-team .post {
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.our-team .description{
    font-size: 14px;
    color: #191b26;
}
.our-team .social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.our-team .social li{
    display: inline-block;
    margin-right: 10px;
}
.our-team .social li:last-child{
    margin-right: 0;
}
.our-team .social li a {
	display: block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 14px;
	color: #fff;
	border-radius: 4px;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	border: 1px solid #eee;
}
.our-team .social li a:hover{ color: #fff; }
.our-team .social li a.fa-facebook{ background: #3b5a9b;border: 1px solid #3b5a9b; }
.our-team .social li a.fa-twitter{ background: #2baae1;border: 1px solid #2baae1; }
.our-team .social li a.fa-youtube{ background: #c3181e;border: 1px solid #c3181e; }
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 50px; }
}
@media only screen and (max-width: 360px){
    .team-content{ padding: 15% 15px 0; }
    .our-team .social li{ margin-right: 0; }
}
a{
text-decoration:none;    
}

.section-title {
    margin-bottom: 60px;
}
.text-center {
    text-align: center!important;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 600;
    margin-top: 0;
    position: relative;
    text-transform: capitalize;
}

Similar snippets

React js template and ui example team user resume

team user resume

React js template and ui example Meet our heroes

Meet our heroes

React js template and ui example team tiles

team tiles

React js template and ui example home team with hover effect

home team with hover effect

React js template and ui example bs5 dark footer

bs5 dark footer

React js template and ui example Messages Board

Messages Board

React js template and ui example chat app

chat app

React js template and ui example Team member

Team member