用jQuery动画内联元素

我试图使用jQuery显示和隐藏一个内联元素(如跨度)。

如果我只是使用toggle(),它可以按预期工作,但是如果我使用toggle(“slow”)给它一个动画,它将跨度变成块元素,因此插入断点。

动画可以使用内联元素吗?如果可能,我宁愿顺利滑动,而不是淡入淡出。

<script type="text/javascript">
    $(function(){
        $('.toggle').click(function() { $('.hide').toggle("slow") });
    });
</script>
<p>Hello <span class="hide">there</span> jquery</p>
<button class="toggle">Toggle</button>

解决方法

toggle()具有一堆奇怪的东西,包括隐藏或转换奇数元素。这里有一个类似的解决方案:
$('.toggle').click(function() {
  $('.hide').animate({
    'opacity' : 'toggle',});
});

编辑:这里有一个方法添加平滑的滑动,最少额外的HTML标记

var hidepos = $('.hide').offset().left;
var slidepos = $('.slide').offset().left;

$('.toggle').click(function() {
    var goto = ($('.slide').offset().left < slidepos) ? slidepos : hidepos;

    $('.slide').css({
        'left' : $('.slide').offset().left,'position' : 'fixed',}).animate({
        'left' : goto,},function() {
        $(this).css('position','static');
    });

    $('.hide').animate({
        'opacity' : 'toggle',});
});

HTML:

<p>Hello <span class="hide">there</span> <span class="slide">jquery</span></p>
<button class="toggle">Toggle</button>

相关文章

jQuery插件的种类 1、封装对象方法 这种插件是将对象方法封装起来,用于对通过选择器获取的jQuery对象进...
扩展jQuery插件和方法的作用是非常强大的,它可以节省大量开发时间。 入门 编写一个jQuery插件开始于给...
最近项目中需要实现3D图片层叠旋转木马切换的效果,于是用到了jquery.roundabout.js。 兼容性如图: ht...
一、什么是deferred对象? 开发网站的过程中,我们经常遇到某些耗时很长的javascript操作。其中,既有异...
AMD 模块 AMD(异步模块定义,Asynchronous Module Definition)格式总体的目标是为现在的开发者提供一...