AjatShare

0
Tooltip CSS - Salam sejahtra buat blogger semuanya, pada kesempatan kali ini saya akan memberikan tips atau tutorial membuat Tooltip dengan CSS3 secara manual. Dan apabila teman-teman ingin membuat tooltips yang otomatis saya pernah posting,
baca >> DISINI <<.
STEP #1
  • Loggin Blogger > Dashboard > Edit Html.
  • CTRL+F atau Cari kode ]]></b:skin>,
  • Letakan CSS berikut, tepat diatas kode tersebut.
/*CSS3TOOLTIPXDX*/
.tooltip {
position: relative;
}
.tooltip:before, .tooltip:after {
position: absolute;
transition: All 0.5s ease;
-webkit-transition: All 0.5s ease;
-moz-transition: All 0.5s ease;
-o-transition: All 0.5s ease;
margin-left: -100px;
left: 50%;
bottom: 300%;
display: block;
color: #000;
opacity: 0;
}
.tooltip:before {
content: attr(title);
border: solid 1px #0088cc;
background: #FFF;
width: 200px;
text-align: center;
z-index: 2;
font-size: 13px;
line-height: 18px;
padding: 5px;
}
.tooltip:after {
content: '\25c6';
margin-left: 0;
margin-top: 10px;
width: 15px;
height: 15px;
z-index: 1;
line-height: 28px;
color: #0088cc;
font-size: 20px;
}
.tooltip:hover:before, .tooltip:hover:after {
bottom: 150%;
opacity: 1;
}
  • Simpan Template anda!.
Step #2 
Untuk penerapan dalam postingan anda :
<a href="#" title="Ini adalah Demo membuat Tooltips" class="tooltip">Tooltip</a>
Demo >>> Tooltip

Catatan :
1. Silahkan berkomentar dengan sopan
2. Berkomentarlah sesuai topik / judul.
3. Dilarang Spam dan menyertakan link aktif.
4. Ingin Request klick OOT (Out of topic)

NB :
5. Untuk menyisipkan video, gunakan tag <i rel="youtube">URL YOUTUBE ANDA...</i>
6. Untuk menyisipkan gambar, gunakan tag <i rel="image">URL GAMBAR ANDA...</i>
7. Untuk menyisipkan kode, gunakan tag [code]KODE ANDA[/code]

Konversi Kode

 
Top