Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <script LANGUAGE="JAVASCRIPT">
  2. <!--
  3. estado=0
  4. function pisca(){
  5. if(estado==0){
  6. document.fgColor="red"
  7. estado=1
  8. }else{
  9. if(estado==1){
  10. document.fgColor="GREEN"
  11. estado=2
  12. }else{
  13. document.fgColor="orange"
  14. estado=0
  15. }
  16. }
  17. setTimeout("pisca()",700)
  18. }
  19.  
  20. //-->
  21.  
  22. window.onload=pisca();
  23.  
  24. </script>
  25.  
  26. Todos os Textos Piscando
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement