JS控制鼠标拒绝点击某一按钮

2018-06-24 01:09:48来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

JS控制按钮禁止被选择

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>Document</title>
 6     <script>
 7    window.onload=function(){
 8    
 9        document.getElementById("s").onmouseover=function(evet){
10            
11           var _x=this.offsetLeft;
12           var _y=this.offsetTop;
13           var x=Math.random()*180+Math.random()*50;
14           var y=Math.random()*120+Math.random()*50;
15           this.style.position="absolute";
16           this.style.top=y+'px';
17           this.style.left=x+'px';
18           return false;
19 
20        }
21        document.getElementById("s").onclick=function(){
22         alert("就知道你心里想的和表面做的是相反的!");
23         document.getElementById("main").style.display="none";
24         document.getElementById("img").style.display="block";
25        }
26        document.getElementById("w").onclick=function(){
27         alert("宝贝:谢谢你的爱!我爱你╮(╯▽╰)╭");
28         document.getElementById("main").style.display="none";
29         document.getElementById("img").style.display="block";
30        }
31 }
32 
33     </script>
34   <style>
35   *{
36     margin:0;
37     padding:0;
38   }
39   html{
40     height: 100%;
41     background:url(http://img17.3lian.com/d/file/201702/13/9524e4e08e99e0423f9e9f299e314c72.gif) no-repeat; 
42     background-size: cover;
43   }
44   span{
45     width: 100%;
46     height: 100px;
47     display: block;
48     text-align: center;
49     line-height: 100px;
50     color: #fff;
51   }
52   section{
53   }
54   section button:nth-child(1){
55    position: absolute;
56    background: #DE7C2C;
57    left: 100px;
58    border: 0;
59    z-index: 1;
60   }
61   section button:nth-child(2){
62    position: absolute;
63    z-index: 0;
64    border: 0;
65    background: #DE7C2C;
66    left: 150px;
67   }
68     div{
69       width:300px; 
70       height:200px; 
71       background:rgba(34,93,146,.7); 
72 
73       border:1px solid #eee;  
74       position:absolute;
75       left:0;
76       top: 0;
77       bottom: 0;
78       right: 0;
79       margin: auto;
80     }
81   </style>
82 </head>
83 <body>
84   <div id="main">
85   <span>亲爱的我爱你,你爱我吗?</span>
86   <section>
87     <button id="s" style="padding:1px 10px;"></button>
88      <button id="w" style="padding:1px 10px;"></button>
89   </section>
90      
91 </div>
92 <div id="img" style=" display:none; width:100%; height:100%; background:url(http://upfile.asqql.com/2009pasdfasdfic2009s305985-ts/2017-8/20178172014060928.gif) no-repeat; background-size:cover;"></div>
93 </body>
94 </html>

 

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:js将汉字转为相应的拼音

下一篇:vue获取dom元素注意问题