Advertisement
Fhernd

app.js

Sep 25th, 2017
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var alternarColor = true;
  2.  
  3. $(function () {
  4.     setInterval(function () {
  5.         alternarColor ? $($(".main-titulo")).css('color', 'white') : $($(".main-titulo")).css('color', 'yellow');
  6.         alternarColor  = !alternarColor;
  7.     }, 1000);
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement