-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.php
41 lines (41 loc) · 1.29 KB
/
about.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
<?php
/**
* 关于模板
*
* @package custom
*/
?>
<?php $this->need('public/secheader.php'); ?>
<div id="main-container" class="animate__animated animate__fadeIn">
<div class="footer-text">该页面暂未完成噢!</div>
</div>
<script>
//手机端导航栏控制函数
$("#m-nav-switch").click(function(){
if($("#header-nav-m").css("display")=='none'){
$("#header-nav-m").slideDown();
$(this).animate(
{opacity:'toggle'},
200,
null,
function(){
$("#m-nav-switch").attr("src","<?php $this->options->siteUrl(); ?>/usr/themes/nosky/assets/img/x.svg");
$("#m-nav-switch").animate({opacity:'toggle'},200);
}
);
}else{
$("#header-nav-m").slideUp();
$(this).animate(
{opacity:'toggle'},
200,
null,
function(){
$("#m-nav-switch").attr("src","<?php $this->options->siteUrl(); ?>/usr/themes/nosky/assets/img/menu.svg");
$("#m-nav-switch").animate({opacity:'toggle'},200);
}
);
}
});
</script>
</div>
</body>