用户登录
用户注册

分享至

很精彩!标签UI设计效果 基于jQ的标签特效演示

  • 作者: 犀牛鳄鱼V
  • 来源: 51数据库
  • 2022-08-15
$(window).load(function() {//
$('.tag').each(function(i) {

setTimeout(function() {

$('.tag:eq('+i+')').css({ display: 'block', opacity: 0 }).stop().animate({ opacity: 1 }, 'easeInOutExpo');

}, 250 * (i + 1))

});

$('.tag').hover(function() {

$(this).stop().animate({ paddingRight: ($('.tag_count', this).outerWidth() - 5) }, 'easeInOutExpo');

}, function() {

$(this).stop().animate({ paddingRight: 5 }, 'easeInOutExpo');

});
});
软件
前端设计
程序设计
Java相关