| 
| [jQuery]¿©·¯°¡Áö È¿°ú µ¿½Ã ó¸® - animate() |  |  
|  |  |    | 9³â Àü |  | 
| <style type="text/css"> #my .hover {
 cursor:pointer;
 background-color:Yellow;
 }
 </style>
 <script src="../js/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
 <script type="text/javascript">
 $(document).ready(function () {
 $("#moreRegion").hide(); // ±âº»°ªÀ¸·Î ¼û±â±â
 $("span.more").click(function () {
 // http://docs.jquery.com/ Âü°í
 $("#moreRegion").animate({
 height:'200px', width:'show', opacity:'show'
 }, 'slow');
 $(this).hide('fast');
 });
 });
 </script>
 
 <div class="region">
 ¾È³çÇϼ¼¿ä. ¿©±â´Â º»¹®ÀÔ´Ï´Ù.
 <span class="more">more...</span>
 </div>
 <div id="moreRegion" style="height: 100px; background-color: yellow;">
 ¶Ç ¸¸³ª¿ä
 </div>
 
 | 
 |  
|  ̵̧ : 395 | ̵̧
¸ñ·Ï |  |