jquery – 引导3警告与动画关闭

前端之家收集整理的这篇文章主要介绍了jquery – 引导3警告与动画关闭前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法让bootstrap中的被解除的警报有一个像淡出的动画?

添加了类.fade到代码

<div class="alert alert-info fade alert-dismissable">
      <p><b>Gracias</b> por ponerte en contacto! Responderé a tu correo lo más pronto posible.</p>
 </div>

但它不行.任何帮助将不胜感激!

解决方法

你可以省略data-dismiss属性
<div class="alert alert-warning alert-dismissable">
      <button type="button" class="close" aria-hidden="true">&times;</button>
      <p>animated dismissable</p>
</div>

并使用以下jQuery

$(".alert button.close").click(function (e) {
    $(this).parent().fadeOut('slow');
});

或者如果您想要点击任何地方关闭警报使用

$(".alert-dismissable").click(function (e) {
    $(this).fadeOut('slow');
});
原文链接:https://www.f2er.com/jquery/179911.html

猜你在找的jQuery相关文章