抖音最疯狂的辞职代码,你下载了吗?
Posted IT-博通哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了抖音最疯狂的辞职代码,你下载了吗?相关的知识,希望对你有一定的参考价值。
前言:对于搞笑辞职代码的话,网上很多都是通过C语言或者易语言来写的,这次我通过前端javascript来完成!
首先我们来看看动图是什么样的?
我们来看看JavaScript代码:
<script>
(function()
function $(selector)
return document.querySelector(selector);
var $p1 = document.getElementById('p1');
var $p2 = document.getElementById('p2');
var $container = $('.container');
var $btn = $('#not-allow');
var isBlockClose = true;
var maxX = $container.clientWidth - 1, maxY = $container.clientHeight - 1;
var originPos = $btn.getBoundingClientRect();
$('.allow').addEventListener('click', function()
$p1.style.display = 'none';
$p2.style.display = 'block';
);
$btn.addEventListener('mouseover', function()
this.style.left = Math.floor(Math.random() * maxX - originPos.left) + 'px';
this.style.top = Math.floor(Math.random() * maxY - originPos.top) + 'px';
//console.log(this.style.left, this.style.top);
);
$('.exit').addEventListener('click', function()
isBlockClose = false;
window.close();
);
window.addEventListener('beforeunload', function(e)
if (isBlockClose)
alert("此路不通");
e.returnValue = false;
e.preventDefault();
return "此路不通";
);
)();
</script>
</body>
</html>
想要完整代码的可以点击 源码 或者Q群:733581373就可以领取啦
总结:如果大家有前端基础而且对JavaScript懂的话,这个辞职代码还是很容易学会的!
总而言之,,想要学好编程一定要多写多练,多去找一些项目来开拓自己的视野,提高代码编写和逻辑能力!
以上是关于抖音最疯狂的辞职代码,你下载了吗?的主要内容,如果未能解决你的问题,请参考以下文章