bootstrap 模态框

展示大模态框和小模态框两种,通过modal-lgmodal-sm来控制,bootstrap的模态框自带响应式,移动端优先,在移动端也能有很好的效果:

bootstrap 模态框_第1张图片
happy new years!

在移动端,大模态框和小模态框都是同样大小。



    
        
        
        
        
        
        
        
        
            myBootstrap-modal
        
    
    
        
        
        
        
        
        
        
        
        
    

bootstrap 模态框_第2张图片
happy new years!

bootstrap 模态框_第3张图片
happy new years!

js控制模态框的隐藏

$("#myBtn").click(function() {
    setTimeout(function() {
        $('#myModal').modal("hide")
    },3000);
})
bootstrap 模态框_第4张图片
模态框隐藏.png

官网https://v4.bootcss.com/docs/4.0/components/modal/#remove-animation

你可能感兴趣的:(bootstrap 模态框)