Temp Commit
This commit is contained in:
parent
f65bb9b323
commit
bb2375b15e
|
@ -273,33 +273,3 @@ orbitDesktop.prototype.desktopId = "1";
|
|||
orbitDesktop.prototype.notifyImgPath = "temp";
|
||||
|
||||
// devin
|
||||
(function(){
|
||||
$(document).ready(function(){
|
||||
var $widget_fn = $('.widget_fn'),
|
||||
$fn_des = $('.fn_des');
|
||||
|
||||
$widget_fn.hover(function(){
|
||||
var fn_name = $(this).find('img').attr('alt'),
|
||||
nth = $(this).parents('.d_cate').index(),
|
||||
des_left = $('.dock_child').eq(nth).width();
|
||||
|
||||
|
||||
$(this).addClass('thmc1');
|
||||
$fn_des
|
||||
.text(fn_name)
|
||||
.css({
|
||||
'top':nth * 60,
|
||||
'left': des_left + 60
|
||||
})
|
||||
.stop(true, true)
|
||||
.fadeIn();
|
||||
}, function(){
|
||||
$(this).removeClass('thmc1');
|
||||
$fn_des.stop(true, true).fadeOut();
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
}());
|
||||
|
|
Reference in New Issue