我试图找出如何修改此脚本以添加新功能。
我尝试过很多方法。我需要你的帮助,任何想法?
<ul class="crumbs">
<li><a href="<?php bloginfo('url');?>/work/" class="fromwork">← Work</a></li>
<li class="dash">—</li>
<li><div id="titleMove"><?php the_title(); ?></div></li>
</ul>
// Fade Script
$('.fromwork').click(function(){
var href= $(this).attr('href');
// do animation
$('#titleMove').fadeOut( 200, function(){
// go to link when animation completes
window.location=href;
})
$('body').fadeOut(1000);
// over ride browser following link when clicked
return false;
})
答案 0 :(得分:0)
使用.delay()
和.animate()
使用否定margin-left
。或者确保li.dash
的父级为position:relative;
,然后position:absolute
li.dash
,并使用否定的left
。