forked from prigazzi/slider-jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple.html
More file actions
34 lines (34 loc) · 1.05 KB
/
simple.html
File metadata and controls
34 lines (34 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>plugin jQuery</title>
<link rel="stylesheet" href="css/styles.css">
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script type="text/javascript"
src="js/marquesina.jquery.js">
</script>
</head>
<body>
<section>
<a href="#" id="anterior">«</a>
<div id="marco">
<ul>
<li class="foto"><img src="img/1.jpg" alt=""></li>
<li class="foto"><img src="img/2.jpg" alt=""></li>
<li class="foto"><img src="img/3.jpg" alt=""></li>
<li class="foto"><img src="img/4.jpg" alt=""></li>
<li class="foto"><img src="img/5.jpg" alt=""></li>
</ul>
</div>
<a href="#" id="siguiente">»</a>
</section>
<script type="text/javascript">
$(function() {
$('#marco').marquesina('#anterior', '#siguiente');
});
</script>
</body>
</html>