<script type="text/javascript" src="
http://mymine.wodemo.com/entry/246845/0a9e799a6eceb49f8d39dd96505575b5/jquery-1.10.1.min.js"></script><script type='text/javascript'>
function init() {
// 头像滚动
rotate = function(logo, angle) {
logo.css({
"transform" : "rotate("+angle+"deg)"
});
}
//
var logo=document.getElementById('lg');
logo.onmouseover=function (){
this.width='192';
}
logo.onmouseout=function (){
this.removeAttribute('width');
}
$('.ds-head').each(function (){
this.onmouseover=function (){
$(this).css('width','');
$(this).css('height','');
$(this).css('z-index','9999');
rotate($(this), 360);
}
this.onmouseout=function(){
$(this).css('width','32px');
$(this).css('height','32px');
$(this).css('z-index','10');
rotate($(this), -360);
}
$(this).css('width','32px');
$(this).css('height','32px');
$(this).css('position','relative');
});