您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Bootstrap過(guò)渡動(dòng)畫的示例分析”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Bootstrap過(guò)渡動(dòng)畫的示例分析”這篇文章吧。
動(dòng)畫過(guò)渡(Transitions): 源文件:transition.js
Bootstrap框架默認(rèn)給各個(gè)組件提供了基本動(dòng)畫的過(guò)渡效果,如果要使用,有兩種方法:
* 調(diào)用統(tǒng)一編譯的bootstrap.js;
* 調(diào)用單一的過(guò)渡動(dòng)畫的JavaScript插件文件transition.js(右側(cè)第29行引入Bootstrap上對(duì)外公布的transition.js的地址)。
transition.js文件為Bootstrap具有過(guò)渡動(dòng)畫效果的組件提供了動(dòng)畫過(guò)渡效果。不過(guò)需要注意的是,這些過(guò)渡動(dòng)畫都是采用CSS3來(lái)實(shí)現(xiàn)的,所以IE6-8瀏覽器是不具備這些過(guò)渡動(dòng)畫效果。
默認(rèn)情況之下,Bootstrap框架中以下組件使用了過(guò)渡動(dòng)畫效果:
* 模態(tài)彈出窗(Modal)的滑動(dòng)和漸變效果;
* 選項(xiàng)卡(Tab)的漸變效果;
* 警告框(Alert)的漸變效果;
* 圖片輪播(Carousel)的滑動(dòng)效果。
下面舉了一個(gè)“模態(tài)彈出窗(Modal)的滑動(dòng)和漸變效果”源代碼例子。
<body> <button class="btn btn-primary" type="button">點(diǎn)擊我</button> <div class="modal fade" id="mymodal"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">×</span> <span class="sr-only">Close</span> </button> <h5 class="modal-title">模態(tài)彈出窗標(biāo)題</h5> </div> <div class="modal-body"> <p>模態(tài)彈出窗主體內(nèi)容</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">關(guān)閉</button> <button type="button" class="btn btn-primary">保存</button> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script src="http://cdn.bootcss.com/bootstrap/2.3.1/js/bootstrap-transition.js"></script> <script src="http://cdn.bootcss.com/bootstrap/2.3.1/js/bootstrap-modal.js"></script> <script> $(function(){ $(".btn").click(function(){ $("#mymodal").modal("toggle"); }); }); </script> </body>
以上是“Bootstrap過(guò)渡動(dòng)畫的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。