Dynamic Text on the Header Added.

This commit is contained in:
Prashant Solanki 2015-10-05 20:25:17 +05:30
parent abb5d94efe
commit e7a51f6e37
5 changed files with 523 additions and 2 deletions

View file

@ -390,3 +390,25 @@ img::-moz-selection {
body {
webkit-tap-highlight-color: rgba($light, 0.2);
}
.typed-cursor{
opacity: 1;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
@keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}