使用jq和css3自制图片滚轮

2024-05-30 02:58

本文主要是介绍使用jq和css3自制图片滚轮,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

效果展示
效果展示

这边做的层次感不是很明显,可以自己调节css

目标效果

  • 左右按钮控制图片左右切换
  • 备注信息从下往上缓慢滑出

思路

  • 信息滑出很简单,用css3做就行
  • 左右控制图片,使用定位做,给五个图片分别定位,命名5个class,当右切换,最左边的class切换成默认left,然后从左至右从新给予定义好的五个class

做法

  • 信息从下往上滑出
/*info应该被包裹在box里*/
.box{position: relative;
}.box .info{position: absolute;left: 0;bottom: 0;transition: height 0.6s;width: 100%;height: 0;
}.box:hover > .info{height: auto;    /*或者其他定高*/
}
  • 切换图片

这里写图片描述

切换前new img定位和right-2同样位置,但是z-index比right-2低,隐藏在他下面

切换后的默认样式也是,定位在left-1下面

js

$(".turn-right").click(function(){if($(".main").next().prop('class') === undefined){return false;}$(".left-1").prop('class','match-item left');$(".left-2").prop('class','match-item left-1');$(".main").prop('class','match-item left-2');$(".right-1").prop('class','match-item main');var right = $(".right-2");right.prop('class','match-item right-1');right.next().prop('class','match-item right-2');
});$(".turn-left").click(function(){if($(".main").prev().prop('class') === undefined){return false;}$(".right-2").prop('class','match-item right');$(".right-1").prop('class','match-item right-2');$(".main").prop('class','match-item right-1');$(".left-2").prop('class','match-item main');var left = $(".left-1");left.prop('class','match-item left-2');left.prev().prop('class','match-item left-1');
});

html

<div class="slide"><div class="turn-left"><span class="arrow-left"></span></div><ul class="match-list pst"><li class="match-item left-1"><img src="1.png" alt="" width="100%" /><div class="info"><p>球场:<span class="color-blue">成都观岭</span></p><p>一杆进洞奖金:<span class="color-yellow">2000元</span></p><p>2017.05.01~2017.05.31</p></div></li><li class="match-item left-2"><img src="2.png" alt="" width="100%" /><div class="info"><p>球场:<span class="color-blue">成都观岭</span></p><p>一杆进洞奖金:<span class="color-yellow">2000元</span></p><p>2017.05.01~2017.05.31</p></div></li><li class="match-item main"><img src="3.png" alt="" width="100%" /><div class="info"><p>球场:<span class="color-blue">成都观岭</span></p><p>一杆进洞奖金:<span class="color-yellow">2000元</span></p><p>2017.05.01~2017.05.31</p></div></li><li class="match-item right-1"><img src="1.png" alt="" width="100%" /><div class="info"><p>球场:<span class="color-blue">成都观岭</span></p><p>一杆进洞奖金:<span class="color-yellow">2000元</span></p><p>2017.05.01~2017.05.31</p></div></li><li class="match-item right-2"><img src="2.png" alt="" width="100%" /><div class="info"><p>球场:<span class="color-blue">成都观岭</span></p><p>一杆进洞奖金:<span class="color-yellow">2000元</span></p><p>2017.05.01~2017.05.31</p></div></li><li class="match-item"><img src="3.png" alt="" width="100%" /><div class="info"><p>球场:<span class="color-blue">成都观岭</span></p><p>一杆进洞奖金:<span class="color-yellow">2000元</span></p><p>2017.05.01~2017.05.31</p></div></li></ul><div class="turn-right"><span class="arrow-right"></span></div><div class="clearfix"></div>
</div>

css

.match .turn-left,.match .turn-right{display: inline-block;vertical-align: middle;width: 80px;height: 400px;cursor: pointer;margin: 0 20px;
}.match .turn-left:hover{background: linear-gradient(to left,rgba(96,110,122,0.8),rgba(96,110,122,0));
}.match .turn-right:hover{background: linear-gradient(to right,rgba(96,110,122,0.8),rgba(96,110,122,0));
}.match .turn-left .arrow-left,.match .turn-right .arrow-right{position: relative;
}.match .turn-left .arrow-left:before{content: '';display: inline-block;width: 50px;height: 10px;transform: skewY(-45deg);background-color: #eee;position: absolute;top: 150px;left: 15px;
}.match .turn-left .arrow-left:after{content: '';display: inline-block;width: 50px;height: 10px;transform: skewY(45deg);background-color: #eee;position: absolute;top: 200px;left: 15px;
}.match .turn-right .arrow-right:before{content: '';display: inline-block;width: 50px;height: 10px;transform: skewY(45deg);background-color: #eee;position: absolute;top: 150px;left: 15px;
}.match .turn-right .arrow-right:after{content: '';display: inline-block;width: 50px;height: 10px;transform: skewY(-45deg);background-color: #eee;position: absolute;top: 200px;left: 15px;
}.match .match-list{width: 800px;height: 405px;padding: 20px 0;vertical-align: middle;display: inline-block;white-space: nowrap;overflow-x: hidden;overflow-y: hidden;position: relative;
}.match .match-item{z-index: 100;position: absolute;top: 72px;left: 550px;width: 200px;height: 300px;display: inline-block;margin: 0 10px 10px;box-shadow: 0 1px 8px 2px rgba(1,1,1,0.8);border-radius: 2px;transition: all 1s;cursor: pointer;vertical-align: middle;
}.match .match-item:hover{transform: scale(1.05);box-shadow: 0 1px 10px 4px rgba(1,1,1,0.8);
}.match .left-1{z-index: 300 !important;position: absolute;top: 72px;left: 10px;width: 200px;height: 300px;
}.match .left-2{z-index: 400 !important;position: absolute;top: 35px;left: 145px;width: 250px;height: 375px;
}.match .main{z-index: 500 !important;position: absolute;top: 20px;left: 280px;width: 270px;height: 405px;
}.match .right-1{z-index: 400 !important;position: absolute;top: 35px;left: 415px;width: 250px;height: 375px;
}.match .right-2{z-index: 300 !important;position: absolute;top: 72px;left: 550px;width: 200px;height: 300px;
}.match .left{z-index: 100;position: absolute;top: 72px;left: 10px;width: 200px;height: 300px;
}.match .right{z-index: 100;position: absolute;top: 72px;left: 550px;width: 200px;height: 300px;
}.match .info{position: absolute;left: 0;bottom: 0;width: 100%;height: 0;overflow: hidden;padding: 0;z-index: 200;transition: all 1s;background-color: rgba(0,0,0,0.6);
}.match .main .info{height: 120px;
}.match .info p{font-size: 16px;font-family: SourceHanSansCN-Medium, sans-serif;color: #f0f0f0;margin: 5px 10px;padding: 0;line-height: 30px;height: 30px;text-shadow: 1px 1px rgba(1,1,1,0.6);
}.match .info .color-blue{color: #00a1fe;font-size: 18px;
}.match .info .color-yellow{color: #e07e3e;font-size: 18px;
}

这篇关于使用jq和css3自制图片滚轮的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1015393

相关文章

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

使用Jackson进行JSON生成与解析的新手指南

《使用Jackson进行JSON生成与解析的新手指南》这篇文章主要为大家详细介绍了如何使用Jackson进行JSON生成与解析处理,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 核心依赖2. 基础用法2.1 对象转 jsON(序列化)2.2 JSON 转对象(反序列化)3.

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

详解C#如何提取PDF文档中的图片

《详解C#如何提取PDF文档中的图片》提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使用,下面我们就来看看如何使用C#通过代码从PDF文档中提取图片吧... 当 PDF 文件中包含有价值的图片,如艺术画作、设计素材、报告图表等,提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain