Posts by Romero Souza • 1 point
3 posts
-
0
votes0
answers47
viewsQ: 3d javascript environment rotate camera horizontally by keyboard want to at least walk left and right someone can help me?
Project link running with changes /* CSS Utility Functions -------------------------------------------------- */ var CssUtils = (function() { var s = document.documentElement.style; var vendorPrefix…
-
-1
votes3
answers6287
viewsA: javascript countdown
Create the text div and use css for the color in contrast to the time div count = "<div class='texto'>Atualizado</div>";
-
0
votes3
answers6287
viewsA: javascript countdown
Replace the innerText for innerHTML and do this: if ((count - 1) >= 0){ count -= 1; if (count == 0) { count = "<div class='sint'>Atualizado</div>"; }else if(count < 10){ count =…