$('.tip').css({'left':pos+'px'}).stop(true,false).animate({'top':145,'opacity':1},500);
$('.tip').stop().animate({'top':100,'opacity':0},500)
$('.tip').stop().animate({'top':100,'opacity':0},500)
2016-10-12
var dis = ($('.tip').outerWidth()-$(this).outerWidth())/2;
var l = pos-dis;
$('.tip').css({'opacity':1,'left':l+'px'}).animate({'top':145,'opacity':1},300);
},function(){
if($('.tip').stop(true,false).animate()){
$('.tip').animate({'top':100,'opacity':0},500);
}});})</script>
var l = pos-dis;
$('.tip').css({'opacity':1,'left':l+'px'}).animate({'top':145,'opacity':1},300);
},function(){
if($('.tip').stop(true,false).animate()){
$('.tip').animate({'top':100,'opacity':0},500);
}});})</script>
2016-09-27
<script type="text/javascript">
$(function(){
$('.link .button').hover(function(){
var title = $(this).attr('data');
//document.title=title;
$('.tip em').text(title);
var pos = $(this).position().left+12;
$(function(){
$('.link .button').hover(function(){
var title = $(this).attr('data');
//document.title=title;
$('.tip em').text(title);
var pos = $(this).position().left+12;
2016-09-27