да, вы можете:
HTML:
<div class="scaleMe"> </div>
JQuery:
$(function(){ /* makes sure your dom is ready */
$('div.scaleMe').hover(function(){
$(this).stop(false, true).animate({width:'50px', height:'50px'}, 1000) /* makes the div big on hover, and .stop() makes sure the annimation is not looping*/
},function(){
$(this).stop(false, true).animate({width:'20px', height:'20px'}, 600) /* goes back to normal state */
})
})
здесь вы можете найти хороший пример OSX-подобной док-станции, созданной с помощью jQuery:
http://www.ndesign -studio.com / блог / KSS-док-меню