How to add a transition effect ( fade ) in a select
with onchange
, that when the <div>
object is changed the same happens a transition happens?
Below is a print of the table that was made:
Andhere'sthescript:
<metacharset="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 the person to change the payment cycle in select
, so he changes the price only with a fade , because the way he is, he changes on time. I want to type a fade in this example : clicking to change a fade (transition) in prices, not just changes.
Only in my table will not be a single select
, it will have several each plan with one, as shown in the above image.