zoukankan      html  css  js  c++  java
  • CSS3新增文本属性实现图片点击切换效果

    <!doctype html>
    <html lang="en">
    	<head>
    		<meta charset="UTF-8">
    		<meta name="Keywords" content="关键词">
    		<meta name="Description" content="描述">
    		<title>CSS3新增文本属性</title>
    		<style>
    		body{
    			background:#ccc;
    		}
    		#wrap{
    			640px;
    			margin:100px auto;
    			box-shadow:0 10px 5px rgba(0,0,0,.7);
    			position:relative;
    			padding-top:320px;
    		}
    		#wrap>img{
    			position:absolute;left:0px;top:0px;
    			transition:all 1s;
    		}
    		img{
    			display:block;
    		}
    		input{
    			display:none;
    		}
    		label{
    			border:10px solid #aaa;
    			margin:20px 3px;
    			float:left;
    			opacity:.5;
    			transition:all 1s;
    		}
    		input:checked + label{
    			border:10px solid #fff;
    			opacity:1;
    		}
    		input ~ img{
    			opacity:0;
    			transform:scale(1.1);
    		}
    		input:checked + label + img{
    			opacity:1;
    			transform:scale(1);
    		}
    		</style>
    	</head>
    	<body>
    		<div id="wrap">
    			<input type="radio" name="checked" id="id1" checked >
    			<label for="id1">
    				<img src="images/1.jpg" width="100">
    			</label>
    			<img src="images/1.jpg" width="640" height="320">
    			<input type="radio" name="checked" id="id2">
    			<label for="id2">
    				<img src="images/2.jpg" width="100">
    			</label>
    			<img src="images/2.jpg" width="640" height="320">
    			<input type="radio" name="checked" id="id3" >
    			<label for="id3">
    				<img src="images/3.jpg" width="100">
    			</label>
    			<img src="images/3.jpg" width="640" height="320">
    			<input type="radio" name="checked" id="id4" >
    			<label for="id4">
    				<img src="images/4.jpg" width="100">
    			</label>
    			<img src="images/4.jpg" width="640" height="320">
    			<input type="radio" name="checked" id="id5" >
    			<label for="id5">
    				<img src="images/5.jpg" width="100">
    			</label>
    			<img src="images/5.jpg" width="640" height="320">
    		</div>
    	</body>
    </html>
    
    

      

  • 相关阅读:
    JVM调优2
    CAP理论/AP架构/CP架构
    JDK8 JVM性能优化-1
    string+和stringbuffer的速度比较
    @SpringBootApplication注解分析
    Spring Cloud底层原理
    Window 下安装 redis
    Spring的任务调度@Scheduled注解——task:scheduler和task:executor的解析
    多线程捕获线程中的异常
    将 HTML 页面内容转换为图片或PDF文件
  • 原文地址:https://www.cnblogs.com/jikaiyang/p/5767669.html
Copyright © 2011-2022 走看看