Created
May 21, 2021 16:57
-
-
Save tiagocordeiro/c8989beee4383c04ba51d63a1946b1c0 to your computer and use it in GitHub Desktop.
Cotação do dolar nos widgets do wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
<script type="text/javascript"> | |
// Dolar $ | |
$.getJSON( "https://lme-flask.herokuapp.com/summary", function( data ) { | |
var indices = '<p><strong style="font-size: 26px; font-weight: 500; line-height: 1em;">R$ '+ money(data.dolar) +'</strong></p>'; | |
$('#info').html(indices); | |
}); | |
money = function(n){ | |
var | |
c = 2, | |
d = ',', | |
t = '.', | |
s = n < 0 ? "-" : "", | |
i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "", | |
j = (j = i.length) > 3 ? j % 3 : 0; | |
return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : ""); | |
}; | |
</script> | |
<h4 class="title" style="text-align: center;">Cotação do Dolar</h4> | |
<div class="et_pb_blurb et_pb_module et_pb_bg_layout_dark et_pb_text_align_center et_pb_blurb_0 et_pb_blurb_position_top"> | |
<div class="et_pb_blurb_content"> | |
<div class="et_pb_main_blurb_image" style="margin-bottom: 20px !important;"><span class="et-pb-icon et-waypoint et_pb_animation_top et-animated" style="color: #ffffff;"></span></div> | |
<div class="et_pb_blurb_container"> | |
<div id="info">Carregando...</div> | |
<div> | |
Valor para <?php echo date('d/m/Y')?> | |
</div> | |
<a style="line-height: 50px;" href="http://www.pumametais.com.br/cotacao-lme/"><i class="fa fa-line-chart"></i> Cotação LME</a> | |
</div> | |
</div> <!-- .et_pb_blurb_content --> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment