编程学习网 > 编程语言 > Java > 利用java写一个简短表白代码,让她无法拒绝
2021
12-01

利用java写一个简短表白代码,让她无法拒绝

现在已是十二月份,月底的圣诞马上就要来临,元旦也不远,这两个时间可谓是表白的好时机。你们是不是还在担心表白没新意,担心被拒绝,小编教你用java写一个简短的表白代码,让她无法拒绝。


<h1 style="position:absolute; left:280px; top:155px; width:auto; height:210px;">你喜欢我吗?</h1>
<div id="By" style="position:absolute; left:285px; top:235px;">
  <input type="button" value=" 是的! " onclick="f1()">
</div>
<div id="Bn" style="position:absolute; left:360px; top:235px;">
  <input type="button" value=" 喜欢个锤子! " onmouseover="f()" onclick="f2()">
</div>

function f1(){
  alert("太好来,晚上一起吃饭看电影!!!") 
} 
var flag=1;
function f(){ 
  var Bn = document.getElementById('Bn');
  var aWidth= document.body.clientWidth || document.documentElement.clientWidth;
  var aHeight= document.body.clientHeight || document.documentElement.clientHeight;
  var sJs1=Math.floor(Math.random()*aHeight);
  var sJs2=Math.floor(Math.random()*aWidth);
  if(flag==1){
    Bn.style.top=sJs1 + 'px';
    Bn.style.left=sJs2+'px'; 
    flag=2;

  }else if(flag==2){
    Bn.style.top=sJs1+'px';
    Bn.style.left=sJs2+'px';
    flag=3;
  }else if(flag==3){
    Bn.style.top=235 + 'px';
    Bn.style.left=286 + 'px';
    flag=4;
  }else if(flag==4){
    Bn.style.top=235 + 'px';
    Bn.style.left=360 + 'px';
    flag=1;
  }
}
function f2(){
  alert('这不是你的真心话!');
}
显示效果:


以上就是“利用java写一个简短表白代码,让她无法拒绝”的详细内容,想要了解更多表白代码欢迎持续关注编程学习网

扫码二维码 获取免费视频学习资料

Python编程学习

查 看2022高级编程视频教程免费获取