Can I have an onclick effect in CSS?

后端 未结 12 1765
悲&欢浪女
悲&欢浪女 2020-11-21 06:42

I have an image element that I want to change on click.


This works:

#btnLeft:hover {
    width:7         


        
12条回答
  •  我在风中等你
    2020-11-21 07:13

    Warning! Particularly simple answer below! :)

    You actually can have a change that persists (such as a block/popup that appears and stays visible after a click) with only CSS (and without using the checkbox hack) despite what many of the (otherwise correct) answers here claim, as long as you only need persistence during the hover.

    So take a look at Bojangles and TylerH's answers if those work for you, but if you want a simple and CSS only answer that will keep a block visible after being clicked on (and even can have the block disappear with a followup click), then see this solution.

    I had a similar situation, I needed a popup div with onClick where I couldn't add any JS or change the markup/HTML (a truly CSS solution) and this is possible with some caveats. You can't use the :target trick that can create a nice popup unless you can change the HTML (to add an 'id') so that was out.

    In my case the popup div was contained inside the other div, and I wanted the popup to appear on top of the other div, and this can be done using a combination of :active and :hover:

    /* Outer div - needs to be relative so we can use absolute positioning */
    .clickToShowInfo {
        position: relative;
    }
    /* When clicking outer div, make inner div visible */
    .clickToShowInfo:active .info { display: block; }
    /* And hold by staying visible on hover */
    .info:hover {
        display: block;
    }
    /* General settings for popup */
    .info {
        position: absolute;
        top: -5;
        display: none;
        z-index: 100;
        background-color: white;
        width: 200px;
        height: 200px;
    }
    

    Example (as well as one that allows clicking on the popup to make it disappear) at:

    http://davesource.com/Solutions/20150324.CSS-Only-Click-to-Popup-Div/

    I've also inserted a code snippet example below, but the positioning in the stackoverflow sandbox is weird so I had to put the 'click here' text after the innerDiv, which isn't normally needed.

    /* Outer div - needs to be relative so we can use absolute positioning */
    	.clickToShowInfo {
    		position: relative;
    	}
    	/* When clicking outer div, make inner div visible */
    	.clickToShowInfo:active .info { visibility: visible; }
    	/* And hold by staying visible on hover */
    	.info:hover {
    		visibility: visible;
    	}
    	/* General settings for popup */
    	.info {
    		position: absolute;
    		top: -10;
    		visibility: hidden;
    		z-index: 100;
    		background-color: white;
    		box-shadow: 5px 5px 2px #aaa;
    		border: 1px solid grey;
    		padding: 8px;
    		width: 220px;
    		height: 200px;
    	}
    	/* If we want clicking on the popup to close, use this */
    	.info:active {
    		visibility: hidden;	/* Doesn't work because DCEvent is :active as well */
    		height: 0px;
    		width: 0px;
    		left: -1000px;
    		top: -1000px;
    	}

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua
    Click here to show info

提交回复
热议问题