Css animated Bubbles in Website
The best way to animate your blog to attract audience is by using these codes like CSS. This CSS bubbles could be used as it is very easy to install
How to add
- In blogger EDIT HTML find ]]></b:skin>
and just above it past this code
style 1
.help-bubble100 {
width: 100px;
height: 18px;
top: -100px;
left: -120px;
padding: 3px 3px 3px 3px;
color: #fff ;
background-color: #228B22 ;
font-size: 10px;
font-family: verdana ;
border: 1px solid #228B22 ;
overflow: hidden;
display: block;
position: absolute; /* important */
visibility: hidden;
opacity: 0;
transition: 0.3s ease-out;
-webkit-transition: 0.3s ease-out;
}
STYLE 2
.help-needed:hover .help-bubble100 {
visibility: visible;
opacity: 1;
top: 0px;
z-index: 50;
transition: 0.8s ease-out;
-webkit-transition: 0.8s ease-out;
}
If you want to insert it in post copy this code
<span class="help-bubble100">I am hacker prime </span></span>.
Comments
Post a Comment