Magical css attribute pointer-events_html/css_WEB-ITnose
Jun 24, 2016 am 11:50 AM
After an absolutely positioned element covers a link or adds an element with an event handle, the link's default behavior (page jump) or element event will not be triggered.
Now Firefox3.6/Safari4/Chrome supports a css attribute called pointer-events. Use this attribute to determine whether you can penetrate absolutely positioned elements to trigger certain behaviors of the underlying elements. As follows:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS:pointer-events</title>
<style type="text/css">
.overlay1 {
width:80px;
height:20px;
background:gold;
position:absolute;
top:5px;
left:5px;
opacity:0.5;
}
.overlay2 {
width: 80px;
height:20px;
background:gold;
position:absolute;
top:40px;
left:5px;
Opacity:0.5;
}
.pointer{pointer-events:none;}
</style>
<script type="text/javascript">
window.onload = function(){
document. getElementById('chx').onclick = function(){ document.getElementById('a').className
. getElementById('b').className
;/head>
<body>
<div id="a" class="overlay1"></div>
<div id="b" class="overlay2" ></div>
<a href="http://mail.sina.com.cn">SinaMail</a>
<br/><br/>
<label for="chx">Enable penetration click</label>
</p>
</body>
</html>
By default, link and span elements are obscured by both absolutely positioned divs. There is no response after clicking respectively, that is, the default behavior of link a cannot be triggered, and the click event of the span element cannot be triggered. However, after turning on the penetration click, clicking the link and span again in Firefox/Safari/Chrome, a browser that supports pointer-events, can trigger the corresponding behavior.

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?

How do I use HTML5 form validation attributes to validate user input?

How to efficiently add stroke effects to PNG images on web pages?

What is the purpose of the <iframe> tag? What are the security considerations when using it?

What are the security implications of using iframes, and how can I mitigate them?

What are the best practices for cross-browser compatibility in HTML5?

How do I use the HTML5 <time> element to represent dates and times semantically?

How do I use the HTML5 <meter> element to display numerical data within a range?
