17f04638 by 任超

feat:回到顶部

1 parent aed0d33e
......@@ -654,6 +654,9 @@ div.footer .system_service ul li a{
font-weight: 400;
color: #DEDEDE;
}
div.footer .system_service ul li a:hover {
color: #f46143;
}
.footer .subject {
width: 1200px;
margin: 0 auto;
......
......@@ -437,4 +437,19 @@
//…
});
layui.use('util', function () {
var util = layui.util;
//执行
util.fixbar({
bar1: true,
bar2: true,
top:true
, click: function (type) {
console.log(type);
if (type === 'bar1') {
alert('点击了bar1')
}
}
});
});
</script>
\ No newline at end of file
......