使用JQuery实现轮播,鼠标移入开始,鼠标移出暂停

本文介绍如何使用JQuery创建轮播图,包括自动轮播、鼠标移入暂停、点击切换图片和小圆点控制任意切换功能。
摘要由CSDN通过智能技术生成

使用JQuery实现轮播图

1.自动轮播(设置定时器)
2.左右点击实现切换图片
3.点击小圆点实现图片的任意切换

1.css样式
#img {
   
	width: 1000px;
	height: 700px;
	background: url(../img/0.jpg) no-repeat;
	background-size: 1000px 700px;
	position: relative;
	margin: 20px auto;
}

#btnLeft,
#btnRight {
   
	width: 50px;
	height: 50px;
	position: absolute;
	color: #87CEEB;
	font-size: 48px;
	line-height: 48px;
	border-radius: 48px;
	text-align: center;
	border-color: aliceblue;
}

#btnLeft {
   
	left: 0px;
	top: 300px;
	background: transparent;
}

#btnRight {
   
	left: 950px;
	top: 300px;
	background: transparent;
}

ul {
   
	position: absolute;
	top: 630px;
	left: 10px;
}

ul>li {
   
	list-style: none;
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 5px;
	margin: 5px;
	float: left;
	background-color: rgba(0, 0, 0, 0.5);
}

2.html
<!DOCTYPE html>
<html>
	<head>
		<
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值