欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery使用ColorBox弹出图片组浏览层实例演示

程序员文章站 2023-11-07 13:07:34
本示例使用jquery的colorbox插件弹出图片组浏览层。 以下是本效果的完整代码,将以下代码保存到html文件,打开即可预览效果。 . 代码如下:

本示例使用jquery的colorbox插件弹出图片组浏览层。

以下是本效果的完整代码,将以下代码保存到html文件,打开即可预览效果。

. 代码如下:


<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>使用colorbox弹出图片组浏览层</title>
<link rel="stylesheet" href="https://www.keleyi.com/keleyi/phtml/colorbox/colorbox.css" />
<script type="text/javascript" src="https://www.keleyi.com/keleyi/pmedia/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="https://www.keleyi.com/keleyi/phtml/colorbox/jquery.colorbox-min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".keleyi_com").colorbox({ rel: 'group1', transition: "none", innerwidth: '700px' });
});
</script>
</head>
<body>
<p style="width:400px;margin-left:auto;margin-right:auto;">
请点击下面链接,即可在弹出层显示图片组。
<p><a class="keleyi_com" href=https://www.2cto.com/uploadfile/2018/0521/20180521115805249.jpg" title="菊花">图片一</a></p>
<p><a class="keleyi_com" href=https://www.2cto.com/uploadfile/2018/0521/20180521115806461.jpg" title="开心">图片二</a></p>
<p><a class="keleyi_com" href=https://www.2cto.com/uploadfile/2018/0521/20180521115806666.jpg" title="宋慧乔">图片三</a></p>
<p><a class="keleyi_com" href=https://www.2cto.com/uploadfile/2018/0521/20180521115806677.jpg" title="梦想">图片四</a></p>
</p></body>
</html>