merged css3 transitions

This commit is contained in:
Jono Brandel 2011-02-03 14:40:02 -08:00
parent 695645ef05
commit a178438c91
2 changed files with 0 additions and 25 deletions

View File

@ -89,7 +89,6 @@ div.expanded h2:before, div.collapsed h2:before {
font-size: 9px; font-size: 9px;
font-family: Monaco, monospace; font-family: Monaco, monospace;
} }
<<<<<<< HEAD
div.collapsable { div.collapsable {
overflow: hidden; overflow: hidden;
@ -108,18 +107,6 @@ div.collapsed .collapsable {
clear: both; clear: both;
height: 0; height: 0;
} }
div.expanded .collapsable {
=======
/* Can't seem to get this transition to work :( */
div.collapsable {
>>>>>>> 11325bbf42fee0d080678ae5a55a8a0eeab70925
overflow: hidden;
clear: both;
height: 0px;
-moz-transition: height .2s linear;
-webkit-transition: height .2s linear;
transition: height .2s linear;
}
div.expanded { cursor: pointer; } div.expanded { cursor: pointer; }

View File

@ -69,18 +69,10 @@
if (this.className === 'collapsed') { if (this.className === 'collapsed') {
this.className = 'expanded'; this.className = 'expanded';
<<<<<<< HEAD
collapsable.style.height = wrapper.clientHeight + 'px'; collapsable.style.height = wrapper.clientHeight + 'px';
} else { } else {
this.className = 'collapsed'; this.className = 'collapsed';
collapsable.style.height = '0px'; collapsable.style.height = '0px';
=======
var children = this.childNodes;
this.childNodes[3].style.height = 'auto';
} else {
this.className = 'collapsed';
this.childNodes[3].style.height = '0px';
>>>>>>> 11325bbf42fee0d080678ae5a55a8a0eeab70925
} }
} }
@ -300,11 +292,7 @@ document.getElementById("my-gui-container").appendChild( gui.domElement );</pre>
</div> </div>
</div> </div>
<<<<<<< HEAD
<div class="collapsed"> <div class="collapsed">
=======
<div class="collapsed last">
>>>>>>> 11325bbf42fee0d080678ae5a55a8a0eeab70925
<h2 class="section">Pro tips.</h2> <h2 class="section">Pro tips.</h2>
<div class="collapsable"> <div class="collapsable">
<div> <div>