javascript - Les éléments masqués par défaut en bas de page remontent lentement du bas pour être affichés après un événement de clic? Pourquoi le mien n'a-t-il aucun effet d'animation ?
过去多啦不再A梦
过去多啦不再A梦 2017-05-16 13:26:55
0
3
948

Ce que je veux réaliser, c'est qu'en bas de la page (élément caché), lorsque vous cliquez sur le bouton, il est affiché depuis le bas et déplacé vers la position spécifiée. Il peut être affiché actuellement, mais le processus d'affichage le fait. ne monte pas lentement. Comment le résoudre ?

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

répondre à tous (3)
左手右手慢动作

真正的原因

p元素默认情况下position属性值是static, 而top属性只能应用在position: relativeposition: absolute或者position: fixed的块级元素上!
所以你用animate设置top无效,不信你把.bottom_show元素的position设置为relative试试!

附:css对于块级元素position属性值的说明

  • static:无特殊定位,对象遵循正常文档流。top,right,bottom,left等属性不会被应用。

  • relative:对象遵循正常文档流,但将依据top,right,bottom,left等属性在正常文档流中偏移位置。而其层叠通过z-index属性定义。

  • absolute:对象脱离正常文档流,使用top,right,bottom,left等属性进行绝对定位。而其层叠通过z-index属性定义。

  • fixed:对象脱离正常文档流,使用top,right,bottom,left等属性以窗口为参考点进行定位,当出现滚动条时,对象不会随着滚动。而其层叠通过z-index属性定义。

我提供的示例

我将 .bottom_show 元素设置为了position:relative, 同时为了动画的顺畅,设置这个元素初始透明度为0.这样淡出效果比较好。
见我写的示例

核心代码

HTML

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() 和 show() 拼接动画往往会有一些问题,
    建议用 fadeIn();

      仅有的幸福

      我觉得你的思路是不是有问题,首先你这个移动到屏幕外改elment应该是显示的。只不过需要设置top的值,使其在屏幕范围内看不到,当需要展示的时候然后用animate设置top值,然后就能移动到你想要到的位置。如果不考虑兼容性的话更推荐使用transition+transform:translate组合。

      .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); }

      • 1
      • 2
      • 3

      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(' '); }) })
        Derniers téléchargements
        Plus>
        effets Web
        Code source du site Web
        Matériel du site Web
        Modèle frontal
        À propos de nous Clause de non-responsabilité Sitemap
        Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!