5
How to add a transition effect (fade) in a select
with onchange
, that when the object <div>
change the same occurs a transition?
Below follows a print table that was made:
And this is the script:
<meta charset="utf-8" />
<!-- Isto é a seleção de planos, basta adicionar em qualquer lugar para que o usuario selecione o plano
Atenção! Em value coloque o valor do plano -->
<p>
<select name="select" onchange="document.getElementById('selecionado').innerHTML = 'R$ ' + this.value;">
<option value="nenhum|" selected="selected">Selecione:</option>
<option value="10,00">Mensal</option>
<option value="11,00">Trimestral</option>
<option value="12,00">Semestral</option>
<option value="13,00">Anual</option>
</select>
</p>
<p id="selecionado">
O valor padrão
</p> <!-- Acrescente este código aonde você quer que o texto seja trocado -->
<!-- Como criar uma outra seleção:
Basta trocar o nome em:
<select name="select" onchange="document.getElementById('selecionado').innerHTML = 'R$ ' + this.value;">
Este código você troca esta parte que estará em maiusculo:
<select name="select" onchange="document.getElementById('TROCAR ESTA PALAVRA PARA UMA OUTRA QUALQUER').innerHTML = 'R$ ' + this.value;">
E aí coloque o código de seleção:
<p id="selecionado"></p>
Troque a palavra que "selecionado" para o mesmo que você colocou no primeiro código.
-->
I want when the person changes the payment cycle on select
, he changes the price only with a fade, because the way it is, it changes on time. I want like a fade in this example: when clicking to change occurs a fade ( transition ) in prices, and not just changes.
Only on my chart it won’t be a single select
, it will have several each plane with one, as shown in the image above.
Alexandre, you can use Mootools, jquery or other library?
– Sergio
Yes, the important thing is that it works. D
– Alexandre Lopes
Hi, Alexandre, welcome to SOPT :) I edited your question to improve formatting, check out the markdown guide. Please always put the code with problems right here.
– brasofilo
Thanks @brasofilo
– Alexandre Lopes