-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrost.php
executable file
·75 lines (62 loc) · 2.87 KB
/
frost.php
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
* frost
*
* @package custom
*
*/
?>
<?php $this->need('header.php'); ?>
<!--
<link href="<?php $this->options->themeUrl('css/frost/frost_gallery.css'); ?>" rel="stylesheet">
<link href="<?php $this->options->themeUrl('css/frost/frost.css'); ?>" rel="stylesheet">
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<script src="<?php $this->options->themeUrl('js/frost.js');?>"></script>
<script>
$(document).ready( function() {
$(".frost-gallery").frost_gallery({
enableScroll: true,
autoplay: 2000
});
$(".next").click(function() {
$(".frost-gallery").flipForward();
return false;
});
$(".prev").click(function() {
$(".frost-gallery").flipBackward();
return false;
});
});
</script>
-->
<div class="mainbody gallery-container">
<div style="border-bottom: 1px solid #96c2f1; ">
<ul class="list-inline gallery-link" style="padding-top: 20px;">
<li><button class="btn btn-default" type="button"><a href="gallery.html">Gallery</a></button></li>
<li><button class="btn btn-default" type="button"><a href="desktop.html">Desktop</a></button></li>
<li><button class="btn btn-default" type="button"><a href="guangxi.html">Guangxi</a></button></li>
<li><button class="btn btn-default" type="button"><a href="wind.html">风之谷</a></button></li>
<li><button class="btn btn-default" type="button"><a href="rainy.html">雨之林</a></button></li>
<li><button class="btn btn-default active" type="button"><a href="frost.html">霜之城</a></button></li>
</ul>
</div>
<!--
<div class="frost-gallery">
<a href="#" data-caption="素材1"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
<a href="#" data-caption="素材2"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
<a href="#" data-caption="素材3"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
<a href="#" data-caption="素材4"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
<a href="#" data-caption="素材5"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
<a href="#" data-caption="素材6"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
<a href="#" data-caption="素材7"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
<a href="#" data-caption="素材8"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
<a href="#" data-caption="素材9"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
<a href="#" data-caption="素材10"><img src="<?php $this->options->themeUrl('images/bg_image.jpg'); ?>"></a>
</div>
<div class="navigation">
<a href="#" class="btn prev">上一张</a>
<a href="#" class="btn next">下一张</a>
</div>
</div>
-->
<?php $this->need('footer.php'); ?>