CSS3 Text Reflection Effects | CSS Text Effects

preview_player
Показать описание
Very Easy way to create Text Reflection Effect using only html and css

CSS3 Text Reflection Effects | CSS Text Effects

Follow this Channel on:
--------------------------------------------------

===========================================

--| Watch More Videos on Webdesign | --
-----------------------------------------

Image Credit:
--------------------------------
Pexels

#divinector

video intro credit :
---------------------------------
Pixabay video
Рекомендации по теме
Комментарии
Автор

if you want to get the effect as shown in the thumbnail just add :

body {
background: linear-gradient(to bottom, #0070F7, #01BFF7);
height: 100vh;
}

#text2 {
font-size: 100px;
color: white;
margin: 0;
-moz-transform: scaleY(-1);
-o-transform: scaleY(-1);
-webkit-transform: scaleY(-1);
transform: scaleY(-1);
-webkit-mask-image: -webkit-gradient(linear, right top, right bottom, from(transparent), color-stop(20%, transparent), to(rgba(0, 0, 0, 0.4)));
}

Divinector
Автор

Hey bro, can send the link of background music of this tutorial

SoftechIndia
Автор

Not working in Mozilla ?
Any idea why?

sparshgupta