Text Shadow Effect CSS Tricks

Sesuai janji di artikel sebelumnya, saya persilakan kawan copy-paste kode css ini untuk percantik tampilan web kawan. Bagi yang belum mengerti cara edit css theme worpress, sila baca artikel sebelumnya, klik di sini


Trik 1. Inset
body {
background: #222;
}

#text h1 {
font-size:146px;
color: rgba(0,0,0,0.6);
text-shadow: 2px 2px 3px rgba(255,255,255,0.1);
text-align: center;
}

 Hasil:




Trik 2. Teks 3D

text-shadow: 0 1px 0 #ccc,
0 2px 0 #c9c9c9,
0 3px 0 #bbb,
0 4px 0 #b9b9b9,
0 5px 0 #aaa,
0 6px 1px rgba(0,0,0,.1),
0 0 5px rgba(0,0,0,.1),
0 1px 3px rgba(0,0,0,.3),
0 3px 5px rgba(0,0,0,.2),
0 5px 10px rgba(0,0,0,.25),
0 10px 10px rgba(0,0,0,.2),
0 20px 20px rgba(0,0,0,.15);

Hasil



Trik 3. text Stroke

Kode
h1 {

-webkit-text-stroke: 1px black;
color: white;
text-shadow:
3px 3px 0 #000,
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}

 Hasil


Demikian 3 css code unik yang bisa kawan terapkan untuk percantik tampilan web
Share on Google Plus

About JackSparrow

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 komentar:

Post a Comment