Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var alternarColor = true;
- $(function () {
- setInterval(function () {
- alternarColor ? $($(".main-titulo")).css('color', 'white') : $($(".main-titulo")).css('color', 'yellow');
- alternarColor = !alternarColor;
- }, 1000);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement