javascript - Elements hidden by default at the bottom of the page slowly rise from the bottom to be displayed after a click event? Why doesn't mine have any animation effect?
过去多啦不再A梦
过去多啦不再A梦 2017-05-16 13:26:55
0
3
1006

What I want to achieve is that at the bottom of the page (hidden element), when the button is clicked, it is displayed from the low end and moved to the specified position. It can be displayed currently, but the display process does not rise slowly. Please ask. How to deal with it?

过去多啦不再A梦
过去多啦不再A梦

reply all(3)
左手右手慢动作

The real reason

p elements are by default on position属性值是static, 而top属性只能应用在position: relativeposition: absolute或者 position: fixed block-level elements!
So if you use animate to set top, it is invalid. If you don’t believe me, try setting the position of the .bottom_show element to relative!

Attachment: CSS description of the position attribute value of block-level elements

  • static: No special positioning, the object follows normal document flow. Properties such as top, right, bottom, and left will not be applied.

  • relative: The object follows the normal document flow, but will be offset in the normal document flow based on top, right, bottom, left and other attributes. And its cascading is defined through the z-index attribute.

  • absolute: The object is separated from the normal document flow and uses top, right, bottom, left and other attributes for absolute positioning. And its cascading is defined through the z-index attribute.

  • fixed: The object is separated from the normal document flow. Use top, right, bottom, left and other attributes to position it with the window as the reference point. When the scroll bar appears, the object will not scroll with it. And its cascading is defined through the z-index attribute.

Example provided by me

I set the .bottom_show element to position:relative, and for smooth animation, I set the initial transparency of this element to 0. This way the fade-out effect is better.
See the example I wrote

Core code

HTML

<p class="bottom_show" style="display:none; position:relative; opacity:0">.bottom_show对应的区块(隐藏)  
  </p>

Javascript

  var offsetHeight = document.querySelector('#article').offsetHeight;

  $('.bottom_show').css('top', $(this).height() + 'px'); 
  $(this).hide(30);
  $('.bottom_show').show().animate({top:0, opacity: 1}, 1000);
滿天的星座

hide() and show() often have some problems when splicing animations.
It is recommended to use fadeIn();

仅有的幸福

I think there is something wrong with your idea. First of all, if you move it outside the screen, the element should be displayed. You just need to set the top value so that it cannot be seen within the screen. When it needs to be displayed, use animate to set the top value, and then move it to the position you want. If compatibility is not considered, it is more recommended to use the transition+transform:translate combination.

.wrap {
        width: 400px;
        height: 400px;
        overflow: hidden;
    }
    
    .content {
        height: 200px;
        background: #000;
    }
    
    .btn {
        height: 100px;
        background: #f00;
    }
    
    .tb {
        position: relative;
        height: 100px;
    }
    
    .tbitem {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f11;
        transition: all .2s linear;
    }
    
    .tbitem.active {
        transform: translateY(-100px);
    }
    <p class="wrap">
        <p class="content"></p>
        <p class="btn">
            <button type="button"></button>
            <button type="button"></button>
            <button type="button"></button>
        </p>
        <ul class="tb">
            <li class="tbitem active">1</li>
            <li class="tbitem">2</li>
            <li class="tbitem">3</li>
        </ul>
    </p>

var btn_bar = document.querySelectorAll('.btn button');
        console.log(btn_bar);
        var tbitem_bar = document.querySelectorAll('.tb .tbitem');
        console.log(tbitem_bar);
        [].forEach.call(btn_bar, function(btn, i) {

            btn.addEventListener('click', function() {
                var item = tbitem_bar[i];
                var curClass = item.className.split(' ');
                if (curClass.indexOf('active') != -1) return;

                var active_item = document.querySelector('.tb .active');
                activeClass = active_item.className.split(' ');
                activeClass.splice(activeClass.indexOf('active'), 1);
                active_item.className = activeClass.join(' ');

                curClass.push('active');
                item.className = curClass.join(' ');
            })
        })
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template