又一个绝对棒的对话框插件fancybox v1.3.4
生活随笔
收集整理的這篇文章主要介紹了
又一个绝对棒的对话框插件fancybox v1.3.4
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
http://www.jsfoot.com/jquery/demo/2011-07-30/fancybox/index.html
?
jquery插件:fancybox
Fancybox的特點如下:
使用方法:
1、引入jquery核心庫和Fancybox插件庫
?
| 1 2 | <script?type="text/javascript"?src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> <script?type="text/javascript"?src="/fancybox/jquery.fancybox-1.3.4.pack.js"></script> |
可選?- 如果需要用到fancy transition(一些動畫效果)你還需要引入以下腳本
?
?
| 1 | <script?type="text/javascript"?src="/fancybox/jquery.easing-1.4.pack.js"></script> |
可選?- 如果需要支持鼠標滾輪滾動效果你還需要引入以下腳本
| 1 | <script?type="text/javascript"?src="/fancybox/jquery.mousewheel-3.0.4.pack.js"></script> |
?
2、添加樣式表文件
?
?
| 1 | <link?rel="stylesheet"?href="/fancybox/jquery.fancybox-1.3.4.css"?type="text/css"?media="screen"?/> |
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="imagetoolbar" content="no"/>
<title>FancyBox 1.3.1 | Demonstration</title>
<script type="text/javascript" src="js/jquery-1.4.min.js"></script> <!--調用jquery核心庫----->
<script type="text/javascript" src="js/jquery.mousewheel-3.0.2.pack.js"></script><!--調用可用鼠標控制的庫-->
<script type="text/javascript" src="js/jquery.fancybox-1.3.1.js"></script>
<script type="text/javascript" src="js/pngobject.js"></script> <!--correctly handle PNG transparency in Win IE 5.5 & 6.-->
<link rel="stylesheet" href="style/style.css" type="text/css"/>
<link rel="stylesheet" href="style/jquery.fancybox-1.3.1.css" type="text/css"/>
?
$(document).ready(function() {
/**
運行的代碼
*/
$("a[rel=example_group]").fancybox({
'transitionIn' : 'fade', //設置動畫效果. 可以設置為 'elastic', 'fade' 或 'none'
'transitionOut' : 'fade', //同上
'titlePosition' : 'over', //設置標題顯示的位置.可以設置成 'outside', 'inside' 或 'over'
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) { //可以自定義標題的格式
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
<!-------------------------------------以下屬于測試代碼,不在此例子效果實現的代碼內------------------------------------>
/*
* 單獨設置每個圖片或文件的效果
*/
$("a#example1").fancybox({
'titleShow' : true //是否顯示標題
});
$("a#example2").fancybox({
'titleShow' : true,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic'
});
$("a#example3").fancybox({
'titleShow' : true,
'transitionIn' : 'none',
'transitionOut' : 'none'
});
$("a#example4").fancybox();
$("a#example5").fancybox({
'titlePosition' : 'outside'
});
$("a#example6").fancybox({
'titlePosition' : 'outside'
});
/*
* 設置id號為various效果
*/
$("#various1").fancybox({
'titlePosition' : 'over',//標題顯示的位置
'transitionIn' : 'none',
'transitionOut' : 'none'
});
$("#various2").fancybox();
$("#various3").fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'fade',
'transitionOut' : 'fade',
'type' : 'iframe'
});
$("#various4").fancybox({
'padding' : 0,
'autoScale' : false, //如果為true,fancybox可以自適應瀏覽器窗口大小
'transitionIn' : 'none',
'transitionOut' : 'none'
});
});
</script>
?
</head><body>
<div id="content">
<h4>jQuery FancyBox 實現點擊小圖顯示大圖</h4>
<p>
<a rel="example_group" href="example/4_b.jpg" title="Lorem ipsum dolor sit amet"><img alt="" src="example/4_s.jpg"/></a>
<a rel="example_group" href="example/5_b.jpg" title=""><img alt="" src="example/5_s.jpg"/></a>
<a rel="example_group" href="example/6_b.jpg" title=""><img alt="" src="example/6_s.jpg"/></a>
</p>
<p>
<a rel="example_group" href="example/7_b.jpg" title="Lorem ipsum dolor sit amet"><img alt="" src="example/7_s.jpg"/></a>
<a rel="example_group" href="example/8_b.jpg" title=""><img alt="" src="example/8_s.jpg"/></a>
<a rel="example_group" href="example/9_b.jpg" title=""><img alt="" src="example/9_s.jpg"/></a>
</p>
</div>
<div><p> </p></div>
</body>
</html>
?
轉載于:https://www.cnblogs.com/cblx/p/4815249.html
總結
以上是生活随笔為你收集整理的又一个绝对棒的对话框插件fancybox v1.3.4的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java Map用法
- 下一篇: ELK Stack (1) —— ELK