JSX code
JavaScript
x
5
1
<div>
2
<h3>Person</h3>
3
{isOnline &&<p>online</p>}
4
</div>
5
Need CSS for this Example Output
Advertisement
Answer
Css:
i have a div with display flex which makes img and the span align horizontally, inside my span i have a h1
and a p
tag.
for the h1
i have set some css properties and a transformY(10px)
that means i am moving it up 10px from its original position.and a transition with time and animation type.
for the p
i have also set some properties and a opacity
of 0;
then i am just saying if my wrapper has a class of online
in it then do this to h1
and p
.
i am toggling that online class with a button for demo purpose. but in real life it can be with anything.
JavaScript
1
6
1
let wrapper = document.querySelector(".wrapper");
2
let btn = document.querySelector(".btn");
3
4
btn.addEventListener("click",()=>{
5
wrapper.classList.toggle("online")
6
})
JavaScript
1
34
34
1
.wrapper {
2
width: 510px;
3
height: 130px;
4
background-color: #017d68;
5
display: flex;
6
align-items: center;
7
padding: 10px;
8
gap: 30px;
9
}
10
11
img {
12
height: 120px;
13
border-radius: 100%
14
}
15
16
p {
17
font-size: 20px;
18
color: white;
19
opacity: 0;
20
transition: all 0.25s ease-in-out;
21
}
22
23
h1 {
24
font-family: Arial, Helvetica, sans-serif;
25
color: white;
26
transform: translateY(10px);
27
transition: all 0.25s ease-in-out;
28
}
29
.wrapper.online h1{
30
transform: translateY(-10px);
31
}
32
.wrapper.online p {
33
opacity: 1;
34
}
JavaScript
1
9
1
<div class="wrapper">
2
<img src="https://images.unsplash.com/photo-1493106819501-66d381c466f1?ixlib=rb- 1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80"
3
alt="">
4
<span>
5
<h1>Person</h1>
6
<p>online</p>
7
</span>
8
</div>
9
<button class="btn">Change Status</button>