acredito.js 715 B

123456789101112131415161718192021
  1. var formatter = new Intl.NumberFormat('pt-BR', {
  2. style: 'currency',
  3. currency: 'BRL',
  4. minimumFractionDigits: 2,
  5. });
  6. document.getElementById("precisamos").innerHTML = formatter.format(total - temos);
  7. document.getElementById("temos").innerHTML = formatter.format(temos);
  8. document.getElementById('barra').setAttribute('style', 'width:' + ((100*temos)/(total) + 1) + '%');
  9. function centerPopup(url, title, w, h)
  10. {
  11. var topo = ((screen.height/2) - (h/2));
  12. var esquerda = ((screen.width/2) - (w/2));
  13. return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+topo+', left='+esquerda);
  14. }