浅谈纯CSS实现轮播

本文通过HTML和CSS展示了如何不依赖JavaScript实现一个简单的图片轮播效果。利用CSS的`@keyframes`动画和相对定位,实现了图片的平滑切换,并通过不同颜色的指示点显示当前展示的图片位置。
摘要由CSDN通过智能技术生成
<!DOCTYPE html>
<html>
	<head>
		<style type="text/css">
			.box{
				position:absolute;
				width:20px;
				height:20px;
				background:grey;
				color:white;
				text-align:center;
				font-family:Microsoft Yahei;
			}
			#move1{
				bottom:0;
				left:240px;
				animation:change1 10s ease-out infinite;
			}
			#move2{
				bottom:0;
				left:260px;
				animation:change2 10s ease-out infinite;
			}
			#move3{
				bottom:0;
				left:280px;
				animation:change3 10s ease-out infinite;
			}
			#frame{
				position:absolute;
				width:300px;
				height:200px;
				overflow:hidden;
			}
			#photos img{
				float:left;
				width:300px;
				height:200px;
			}
			#photos{
				position:relative;
				width:900px; 
				animation:actions 10s ease-out infinite;
			}
			@keyframes actions{
				0%,30%{margin-left:0px;}
				35%,65%{margin-left:-300px;}
				70%,100%{margin-left:-600px;}
			}
			@keyframes change1{
				0%,30%{b
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值