You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
3.0 KiB
HTML
97 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery轻量级响应式幻灯片插件EasyFader演示-默认效果_sucaihuo</title>
|
|
<link rel="stylesheet" href="css/jquery.easyfader.css">
|
|
<style>
|
|
.wrap { width: 1000px; margin: 0 auto; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>默认效果</h1>
|
|
|
|
<div class="wrap">
|
|
<div id="sucaihuo" class="fader">
|
|
<img class="slide" src="images/img1.jpg">
|
|
<img class="slide" src="images/img2.jpg">
|
|
<img class="slide" src="images/img3.jpg">
|
|
<div class="fader_controls">
|
|
<div class="page prev" data-target="prev">‹</div>
|
|
<div class="page next" data-target="next">›</div>
|
|
<ul class="pager_list"></ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="js/jquery.min.js"></script>
|
|
<script src="js/jquery.easyfader.min.js"></script>
|
|
<script>
|
|
$(function() {
|
|
$('#sucaihuo').easyFader();
|
|
});
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 以下信息与演示无关,可不必理会 -->
|
|
<style>
|
|
body { margin: 0; border-left: 200px solid #ccc;}
|
|
|
|
h1 { margin: 40px auto; font: 32px "Microsoft Yahei"; text-align: center;}
|
|
|
|
.menu { position: fixed; left: 0; top: 0; bottom: 0; width: 200px; padding-top: 100px; font-family: Consolas,arial,"宋体"; background-color: #ccc; overflow-y: auto;}
|
|
.menu a { display: block; height: 40px; margin: 0 0 1px 2px; padding-left: 10px; line-height: 40px; font-size: 14px; color: #333; text-decoration: none;}
|
|
.menu a:hover { background-color: #eee;}
|
|
.menu .cur { color: #000; background-color: #fff !important;}
|
|
|
|
.vad { margin: 50px 0 10px; font-family: Consolas,arial,宋体,sans-serif; text-align:center;}
|
|
.vad a { display: inline-block; height: 36px; line-height: 36px; margin: 0 5px; padding: 0 50px; font-size: 14px; text-align:center; color:#eee; text-decoration: none; background-color: #222;}
|
|
.vad a:hover { color: #fff; background-color: #000;}
|
|
.thead { width: 728px; height: 90px; margin: 0 auto; border-bottom: 40px solid transparent;}
|
|
|
|
.code { position: relative; margin-top: 100px; padding-top: 41px;}
|
|
.code h3 { position: absolute; top: 0; z-index: 10; width: 100px; height: 40px; font: 16px/40px "Microsoft Yahei"; text-align: center; cursor: pointer;}
|
|
.code .cur { border: 1px solid #f0f0f0; border-bottom: 1px solid #f8f8f8; background-color: #f8f8f8;}
|
|
.code .h31 { left: 0;}
|
|
.code .h32 { left: 102px;}
|
|
.code .h33 { left: 204px;}
|
|
.code .h34 { left: 306px;}
|
|
.code ol { padding: 0;}
|
|
.code { width: 800px; margin-left: auto; margin-right: auto;}
|
|
pre { padding: 15px 0; border: 1px solid #f0f0f0; background-color: #f8f8f8;}
|
|
.f-dn { display: none;}
|
|
</style>
|
|
|
|
<p class="vad">
|
|
<a href="http://www.sucaihuo.com/" target="_blank">sucaihuo.com</a>
|
|
<a href="http://www.sucaihuo.com/js/1235.html" target="_blank">说 明</a>
|
|
<a href="http://www.sucaihuo.com/js/1235.html" target="_blank">下 载</a>
|
|
</p>
|
|
|
|
<div class="menu">
|
|
<a class="cur" href="index.html">1、默认效果</a>
|
|
<a href="index2.html">2、回调函数</a>
|
|
<a href="index3.html">3、响应式</a>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |