分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 网页技术

纯HTML和CSS实现JD轮播图

发布时间:2023-09-06 01:57责任编辑:赖小花关键词:CSSHTML轮播图

  博主使用了纯HTML和CSS实现了JD的轮播图,没有加动态效果,主要是使用了定位的知识。

   ,如图为两个侧边箭头图片。

  

<!DOCTYPE html><html lang="en"><head> ???<meta charset="UTF-8"> ???<title>LunBo</title> ???<style> ???????*{ ???????????padding: 0; ???????????margin: 0; ???????} ???????li{ ???????????list-style: none; ???????} ???????.lunbo{ ???????????margin: 40px auto; ???????????height: 470px; ???????????width: 590px; ???????????position: relative; ???????} ???????.left,.right{ ???????????position: absolute; ???????????top: 50%; ???????????margin-top: -18px; ???????????width: 24px; ???????????height: 36px; ???????} ???????.left{ ???????????left: 0; ???????} ???????.right{ ???????????right: 0; ???????} ???????.lunbo ul{ ???????????height: 18px; ???????????width: 151px; ???????????background: rgba(255,255,255,.3); ???????????position: absolute; ???????????bottom: 10px; ???????????left: 50%; ???????????margin-left: -76px; ???????????border-radius: 10px; ???????} ???????.lunbo li{ ???????????height: 14px; ???????????width: 14px; ???????????border-radius: 50%; ???????????background-color: #fff; ???????????float: left; ???????????margin: 2px; ???????} ???????.lunbo .current{ ???????????background-color: #f40; ???????} ???</style></head><body> ???<div class="lunbo"> ???????<img src="images/lunbo.jpg" alt=""> ???????<div class="left"><img src="images/left.png" alt=""></div> ???????<!-- 也可以使用链接然后使用backgrounf --> ???????<div class="right"><img src="images/right.png" alt=""></div> ???????<ul> ???????????<li class="current"></li> ???????????<li></li> ???????????<li></li> ???????????<li></li> ???????????<li></li> ???????????<li></li> ???????????<li></li> ???????????<li></li> ???????</ul> ???</div></body></html>

 实现了如下效果

纯HTML和CSS实现JD轮播图

原文地址:https://www.cnblogs.com/mugglean/p/9118933.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved