<script type="text/javascript">
$(function() {
$('a[href*="section"]').bind('click',function(event){
var $anchor = $(this);
$('#sectionCon > div').removeAttr("style");
var addressValue = $(this).attr("href");
$(addressValue).fadeIn(1500);
$('html, body').stop().animate({
scrollLeft: $($anchor.attr('href')).offset().left
}, 2500,'easeInOutExpo',function(){
});
});
});
</script>
有人能帮我吗。我想从右到左淡化 $(addressValue) 。显示:无开始。我试过动画,但没有按预期工作