基于bootstrap可自定义文字及风格位置的弹出层插件

所属分类: 网页特效-弹出层    2023-12-26 09:42:52

基于bootstrap可自定义文字及风格位置的弹出层插件 ie兼容6
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

基于bootstrap可自定义文字及风格位置的弹出层插件(共3个文件)

    • index.html

使用方法

document.querySelector('#create-toast').addEventListener('click', function() {
    document.querySelector('#toast-container').classList.remove('top-0','end-0','bottom-0','start-0');

    var content = (document.querySelector('input[name=content]').value != '') 
        ? document.querySelector('input[name=content]').value 
        : 'Lorem ipsum dolor sit amet';

    var type = (document.querySelector('select[name=type]').value != '') 
        ? document.querySelector('select[name=type]').value 
        : 'success';

    var position = (document.querySelector('select[name=position]').value != '') 
        ? document.querySelector('select[name=position]').value.split(',')
        : ['top-0','end-0'];

    showToast(content, type, position);
});

function showToast(content, type, position) {
    var delay = 15000;
    position.forEach((el) => {
        document.querySelector("#toast-container").classList.add(el);
    });
    var html = `<div class="toast align-items-center text-white bg-${type} border-0" role="alert" aria-live="assertive" aria-atomic="true"><div class="d-flex"><div class="toast-body h6 p-3 m-0">${content}</div><button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button></div></div>`;
    var toast = htmlToElement(html);
    var toastContainer = document.querySelector("#toast-container");
    toastContainer.appendChild(toast);
    var toast = new bootstrap.Toast(toast, {delay:delay, animation:true});
    toast.show();
    setTimeout(() => toast.remove(), delay + 15000);
}

function htmlToElement(html) {
    var template = document.createElement('template');
    html = html.trim();
    template.innerHTML = html;
    return template.content.firstChild;
}

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 弹出层

javascript鼠标悬停链接可显示预览图文特效代码

一款鼠标悬停于链接上呈现图文预览效果,可在a标签上进行设置图文信息,很实用的鼠标悬停预览。
  弹出层
 5229  0

jquery高仿猎聘人才招聘网城市选择器代码

一款弹出框点选省份城市插件,支持单选和多选,确认后赋值到当前文本框内,非常实用。
  弹出层
 249  0

jquery带多种类型的可自定义的页面右下角弹出层插件

一款响应式弹窗特效代码,支持自定义参数,包括:显示位置、窗口颜色、弹窗文本内容等。
  弹出层
 4192  0

jquery轻量级带音效的消息通知插件

notifyMessage是一款轻量级消息通知插件,点击绑定的DIV后,从页面右侧底部滑出,可设置MP3声音。
  弹出层
 2225  0

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论