- 在线时间
- 180 小时
- 专家
- 0
- UID
- 239253
- 注册时间
- 2006-2-7
- 帖子
- 133
- 精华
- 0
- 积分
- 3309
- 离线
- 1 天
- 帖子
- 133
- 体力
- 3309
- 威望
- 0
|
本帖最后由 qp3db 于 2012-5-7 16:39 编辑
自己写的简单的JQuery焦点图。- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Demo</title>
- <script type="text/javascript" src="jquery-1.6.min.js"></script>
- <script src="JQuery.mythShow.1.js"></script>
- </head>
- <style>
- /*自定义样式*/
- * {margin:0px;padding:0px;list-style-type:none;font-size:11px;font-family:arial, "Microsoft Yahei", "宋体"}
- body {padding:50px;}
- </style>
- <body>
- <div id="htmlShow">
- <img src="show/1.jpg" spry:default="title1" spry:content="content1" spry:choose="#" />
- <img src="show/2.jpg" spry:default="title2" spry:content="content2" spry:choose="#" />
- <img src="show/3.jpg" spry:default="title3" spry:content="content3" spry:choose="#" />
- <img src="show/4.jpg" spry:default="title4" spry:content="content4" spry:choose="#" />
- <img src="show/5.jpg" spry:default="title5" spry:content="content5" spry:choose="#" />
- </div>
- <script>
- $(document).mythShow("#htmlShow",700,400); //ID 宽 高
- //spry:default 标题
- //spry:content 简要信息
- //spry:choose 连接地址
- </script>
- </body>
- </html>
复制代码 |
附件: 你需要登录才可以下载或查看附件。没有帐号?注册
|