xxxxxxxxxx
1
<h1 class="center-text" style="margin: 50px 0 100px 0;">Rotating card</h1>
2
</hr>
3
<!--Exemple card-->
4
<div class="maincontainer">
5
6
<div class="thecard">
7
8
<div class="flip">
9
<!--Front card-->
10
<div class="thefront">
11
<div class="my-gradient radius-front"></div>
12
<div class="avatar-container">
13
<img class="avatar" src="https://i.ibb.co/Kxspx5s/img9Edit.jpg">
14
</div>
15
<h4 class="name">CEO</h4>
16
<p class="stars center-text m-0">
17
<i class="fas fa-star amber-text"> </i>
18
<i class="fas fa-star amber-text"> </i>
19
<i class="fas fa-star amber-text"> </i>
20
<i class="fas fa-star amber-text"> </i>
21
<i class="fas fa-star amber-text"> </i>
22
</p>
23
<p class="textarea center-text">Header of this Corp. </p>
24
</div>
25
<!--Front card-->
26
27
<!--Back card-->
28
29
<div class="theback">
30
<div class="my-gradient radius-back"></div>
31
<h4 class="name">Title</h4>
32
<p class="textarea">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
33
incididunt ut labore et </p>
34
<a class="btn waves-effect waves-light btn-red center-absolute">More</a>
35
<!--Social media buttons-->
36
37
<ul class="list-unstyled list-inline text-center card-links">
38
<li class="list-inline-item m-0">
39
<a class="btn-floating btn-fb mx-1 waves-effect waves-light card-link">
40
<i class="fab fa-facebook-f fa-1x"> </i>
41
</a>
42
</li>
43
<li class="list-inline-item m-0">
44
<a class="btn-floating btn-tw mx-1 waves-effect waves-light card-link">
45
<i class="fab fa-twitter"> </i>
46
</a>
47
</li>
48
<li class="list-inline-item m-0">
49
<a class="btn-floating btn-gplus mx-1 waves-effect waves-light card-link">
50
<i class="fab fa-google-plus-g"> </i>
51
</a>
52
</li>
53
<li class="list-inline-item m-0">
54
<a class="btn-floating btn-li mx-1 waves-effect waves-light card-link">
55
<i class="fab fa-linkedin-in"> </i>
56
</a>
57
</li>
58
</ul>
59
60
<!--/Social media buttons-->
61
</div>
62
<!--/Back card-->
63
</div>
64
<div class="top waves-effect waves-light">
65
<h3>John Wick</h3>
66
</div>
67
</div>
68
69
</div>
70
<!-- ./Exemple card -->
xxxxxxxxxx
1
*
2
{
3
padding: 0;
4
margin: 0;
5
}
6
7
body
8
{
9
background-color: rgb(255, 255, 255);
10
/*cursor: none;*/
11
color: rgb(0, 0, 0);
12
}
13
14
.center-text{text-align: center;}
15
.center-margin{margin: 0 auto;}
16
.center-absolute{
17
position: absolute;
18
left: 50%;
19
transform: translateX(-50%);
20
}
21
22
.maincontainer
23
{
24
margin: 0 auto;
25
position: relative;
26
width: 250px;
27
height: auto;
28
}
29
30
.thecard
31
{
32
width: 100%;
33
height: auto;
34
transform-style: preserve-3d;
35
}
36
37
.flip
38
{
39
width: 100%;
40
height: 350px;
41
transform-style: preserve-3d;
42
transition: all 0.4s ease;
43
}
44
.thecard:hover .theback
45
{
46
box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.43);
47
}
48
.thefront
49
{
50
width: 100%;
51
height: 350px;
52
backface-visibility: hidden;
53
background: #ffffff;
54
color: rgb(0, 0, 0);
55
border-radius:20px 0 20px 0;
56
transition: all 0.4s ease;
57
box-shadow: 0px 1px 10px -2px rgba(0,0,0,0.43);
58
overflow: hidden;
59
}
60
61
.theback
62
{
63
64
width: 100%;
65
height: 350px;
66
backface-visibility: hidden;
67
background: #ffffff;
68
color: rgb(0, 0, 0);
69
transition: all 0.4s ease;
70
border-radius:0 20px 0 20px ;
71
box-shadow: 0px 1px 10px -2px rgba(0,0,0,0.43);
72
transform: translateY(-100%) rotateY(180deg);
73
overflow: hidden;
74
}
75
76
.textarea
77
{
78
width: 90%;
79
margin: 10px auto;
80
}
81
82
.top
83
{
84
position: absolute;
85
top: 0;
86
text-align: center;
87
background-color: #d32f2f;
88
justify-items: center;
89
vertical-align: middle;
90
width: 100%;
91
margin: 0 auto;
92
border-radius: 0 20px 0 20px;
93
transform: translateY(-25px);
94
color: #fff;
95
transition: 0.4s all;
96
box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.43);
97
}
98
99
.top > h3
100
{
101
font-size: 30px;
102
padding: 5px 0;
103
}
104
105
.avatar-container
106
{
107
width: 170px;
108
margin: 40px auto 5px auto;
109
}
110
111
.avatar
112
{
113
max-width: 170px;
114
border-radius: 50%;
115
left: 50%;
116
box-shadow: 0px 1px 10px -2px rgba(0,0,0,0.43);
117
}
118
119
.name
120
{
121
text-align: center;
122
font-size: 20px;
123
padding: 5px 0;
124
}
125
126
.theback > a
127
{
128
bottom: 60px;
129
}
130
131
.card-link
132
{
133
position: relative;
134
margin: 0;
135
width: 30px;
136
height: 30px;
137
}
138
139
.card-link > *
140
{
141
position: absolute;
142
top: 50%;
143
left: 50%;
144
transform: translate(-50%, -50%);
145
}
146
147
148
.card-links
149
{
150
width: 100%;
151
position: absolute;
152
bottom: 0;
153
left: 50%;
154
transform: translateX(-50%);
155
}
156
157
.my-gradient
158
{
159
content: '';
160
position: absolute;
161
bottom: 0;
162
width: 100%;
163
height: 20%;
164
display: inline-block;
165
/* FF3.6+ */
166
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 46, 46, 0.1)));
167
/* Chrome,Safari4+ */
168
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 46, 46, 0.1) 100%);
169
/* Chrome10+,Safari5.1+ */
170
background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 46, 46, 0.1) 100%);
171
/* Opera 11.10+ */
172
/* IE10+ */
173
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0))), to(rgba(255, 46, 46, 0.1)));
174
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 46, 46, 0.1) 100%);
175
/* W3C */
176
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002f4b', endColorstr='#00000000', GradientType=0);
177
/* IE6-9 */
178
}
179
.radius-front{border-radius:0 0 20px 0;}
180
.radius-back{border-radius:0 0 0 20px;}
xxxxxxxxxx
1
function flip(){
2
clearTimeout(backVar);
3
$(".top").css({
4
"box-shadow": "0px 1px 10px -2px rgba(0,0,0,0.43)",
5
"transform": "translateY(-100%)"
6
});
7
flipVar = setTimeout( function(){
8
$(".flip").css({
9
"transform": "rotateY(180deg)"
10
});
11
$(".radius-front").hide();
12
}, 400);
13
}
14
15
function back(){
16
clearTimeout(flipVar);
17
$(".radius-front").show();
18
backVar = setTimeout( function(){
19
$(".top").css({
20
"box-shadow": "0px 10px 20px 0px rgba(0,0,0,0.43)",
21
"transform": "translateY(-25px)"
22
});
23
24
}, 400);
25
$(".flip").css({
26
"transform": "none"
27
});
28
}
29
30
var flipVar, backVar;
31
32
$(function(){
33
$(".thecard").hover(function(){
34
flip();
35
}, function(){
36
back();
37
});
38
39
});
Console errors: 0