これを見つけました高さを移行するにはどうすればよいですか: 0; 高さ: 自動; CSSを使用していますか?このメソッドを使用して、ボタンのクリックでdivの高さを変更しようとしましたが、何らかの理由で機能しません。不要な情報が多くてすみません。
jQuery
function playSound(soundfile){
document.getElementById("dummy").innerHTML =
"<embed src=\""+soundfile+"\" hidden=\"true\" autostart=\"true\" loop=\"false\" />";
}
$('button').bind('click', function(e) {
e.preventDefault();
$('.taller').toggleClass('animated');
});
HTML
<div id="container">
<span id="dummy"></span>
<button onclick="playSound('sound/button-30.wav','sound/button30.mp3');">PlaySound</button>
<div class="taller">I SHOULD BECOME TALLER</div>
</div>
CSS
#container{
background-color:lightblue;
width:960px;
height:550px;
}
.taller{
overflow:hidden;
background:#000;
color:#fff;
width:80px;
max-height:15px;
-webkit-transition: max-height .5s linear;
-moz-transition: max-height .5s linear;
transition: max-height .5s linear;
}
.animated{
max-height:100px;
}