forked from linxuyuan/wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
142 lines (134 loc) · 4.8 KB
/
footer.php
File metadata and controls
142 lines (134 loc) · 4.8 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
/**
* 页脚模板
*/
?>
<div class="link-box">
<div class="wrap-body">
<h4 class="title">友情链接:</h4>
<ul class="link-list">
<li><a href="http://szgzwdz.1688.com">二极管生产厂家</a></li>
<li><a href="http://team.yunser.com">云设工作室</a></li>
<li><a href="https://shop104683752.taobao.com/?spm=a313o.7775905.1998679131.d0011.DCvT5J" target="_blank">新富林官方网店</a>
<li><a href="http://www.smtjg.com/">龙岗贴片加工厂</a></li>
</li>
</ul>
</div>
</div>
<footer>
<div class="footer-info ">
<div class="wrap-body">
<div class="left">
<img src="<?php echo RES_PATH ?>/img/logo_white.png">
</div>
<div class="middle">
<div class="">
<div class="footer_nav smal-hide">
<a href="http://xfl1688.com">网站首页</a><a href="about">关于我们</a><a href="news">新闻资讯</a><a href="mlcc">产品中心</a><a
href="contact" class="last">联系我们</a>
</div>
<div class="footer_detail">
<p><span>联系电话:0755-27838398</span> <span>电话:+86 15602228983 </span></p>
<p><span>地址:深圳市宝安电子城1楼1016</span></p> <a href="http://www.miitbeian.gov.cn/">粤ICP备17151952号</a>
<p style="visibility:hidden"><span>关键字:电解电容 电解电容厂家 铝电解电容 电容器 电子元器件配套</span></p>
</div>
</div>
</div>
<div class="right">
<img src="<?php echo RES_PATH ?>/img/wechat.png">
</div>
</div>
</div>
</footer>
<!-- /页脚 -->
<script type="text/javascript" src="<?php echo RES_PATH ?>/lib/jquery.min.js"></script>
<script type="text/javascript" src="<?php echo RES_PATH ?>/js/jquery.SuperSlide.2.1.1.js"></script>
<script>
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?3f35f8f7e36ec1c39510f5accdb52eb8";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<script>
function _addFavorite() {
var url = window.location;
var title = document.title;
var ua = navigator.userAgent.toLowerCase();
if (ua.indexOf("360se") > -1) {
alert("由于360浏览器功能限制,请按 Ctrl+D 手动收藏!");
}
else if (ua.indexOf("msie 8") > -1) {
window.external.AddToFavoritesBar(url, title); //IE8
}
else if (document.all) {//IE类浏览器
try{
window.external.addFavorite(url, title);
}catch(e){
alert('您的浏览器不支持,请按 Ctrl+D 手动收藏!');
}
}
else if (window.sidebar) {//firfox等浏览器;
window.sidebar.addPanel(title, url, "");
}
else {
alert('您的浏览器不支持,请按 Ctrl+D 手动收藏!');
}
}
</script>
<script id="jsID" type="text/javascript">
var ary = location.href.split("&");
jQuery(".slideTxtBox").slide({
effect: ary[1],
autoPlay: ary[2],
trigger: ary[3],
easing: ary[4],
delayTime: ary[5],
pnLoop: ary[6]
});
</script>
<script id="jsID" type="text/javascript">
var ary = location.href.split("&");
jQuery(".slideBox").slide({
mainCell: ".bd ul",
effect: ary[3],
autoPlay: ary[2],
trigger: ary[3],
easing: ary[4],
delayTime: ary[5],
mouseOverStop: ary[6],
pnLoop: ary[7]
});
</script>
<script>
$(function(){
var KF = $(".keifu");
var wkbox = $(".keifu_box");
var kf_close = $(".keifu .keifu_close");
var icon_keifu = $(".icon_keifu");
var kH = wkbox.height();
var kW = wkbox.width();
var wH = $(window).height();
KF.css({height:kH});
icon_keifu.css("top",parseInt((kH-100)/2));
var KF_top = (wH-kH)/2;
if(KF_top<0) KF_top=0;
KF.css("top",KF_top);
$(kf_close).click(function(){
KF.animate({width:"0"},200,function(){
wkbox.hide();
icon_keifu.show();
KF.animate({width:26},300);
});
});
$(icon_keifu).click(function(){
$(this).hide();
wkbox.show();
KF.animate({width:kW},200);
});
});
</script>
</body>
</html>