Compare commits

..

2 Commits
2.2.7 ... 2.3.1

Author SHA1 Message Date
David Miller
3b9e93f0ed v2.3.1 2022-04-02 20:44:31 +08:00
David Miller
a654fb84c7 v2.3 2022-03-31 20:16:02 +08:00
2 changed files with 53 additions and 0 deletions

52
assets/js/statuspage.js Normal file
View File

@@ -0,0 +1,52 @@
(function(){
var frame = document.createElement('iframe');
frame.src = 'https://fq8xc1yqvf0c.statuspage.io/embed/frame';
frame.style.position = 'fixed';
frame.style.border = 'none';
frame.style.boxShadow = '0 20px 32px -8px rgba(9,20,66,0.25)';
frame.style.zIndex = '9999';
frame.style.transition = 'left 1s ease, bottom 1s ease, right 1s ease';
var mobile;
if (mobile = screen.width < 450) {
frame.src += '?mobile=true';
frame.style.height = '20vh';
frame.style.width = '100vw';
frame.style.left = '-9999px';
frame.style.bottom = '-9999px';
frame.style.transition = 'bottom 1s ease';
} else {
frame.style.height = '115px';
frame.style.width = '320px';
frame.style.left = 'auto';
frame.style.right = '-9999px';
frame.style.bottom = 'calc(100% - 175px)';
}
document.body.appendChild(frame);
var actions = {
showFrame: function() {
if (mobile) {
frame.style.left = '0';
frame.style.bottom = '0';
}
else {
frame.style.left = 'auto';
frame.style.right = '60px'
}
},
dismissFrame: function(){
frame.style.left = '-9999px';
}
}
window.addEventListener('message', function(event){
if (event.data.action && actions.hasOwnProperty(event.data.action)) {
actions[event.data.action](event.data);
}
}, false);
window.statusEmbedTest = actions.showFrame;
})();

View File

@@ -32,6 +32,7 @@
<li><a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010802035614" target="_blank">京公网安备 11010802035614号</a></li>
<li><a href="https://beian.miit.gov.cn/" target="_blank">京ICP备2021023756号-1</a></li>
</ul>
<script src="assets/js/statuspage.js"></script>
</footer>
<!-- Scripts -->