FadeIn BBCode
The FadeIn BBCode let you use a bbcode that will fadein your post.
Demo:
First part of this post.
BBCode: The FadeIn BBCode let you use a bbcode that will fadein your post.
Demo:
First part of this post.
Code:
[fadein]{TEXT}[/ticker][/fadein]HTML: [code]<div class="fade-in-text">{TEXT}</div>
Code:
Fadein: [fadein]Your text here[/fadein]
Code:
[fadein]Lorem ipsum dolor sit amet, consectetuer adipiscing elit.[/fadein]
You can add it to the bottom of your styles colours.css
Code:
.fade-in-text { animation: fadeIn 5s; -webkit-animation: fadeIn 5s; -moz-animation: fadeIn 5s; -o-animation: fadeIn 5s; -ms-animation: fadeIn 5s;}@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-moz-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-webkit-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-o-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-ms-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}
Code:
animation: fadeIn 5s; -webkit-animation: fadeIn 5s; -moz-animation: fadeIn 5s; -o-animation: fadeIn 5s; -ms-animation: fadeIn 5s;
Statistics: Posted by Stoker — Yesterday, 23:12