jQuery做出图文高亮滚动切换效果详解
这次给大家带来jQuery做出图文高亮滚动切换效果详解,jQuery做出图文高亮滚动切换效果的注意事项有哪些,下面就是实战案例,一起来看一下。
这里介绍jQuery图文高亮滚动切换特效,jQuery鼠标滑过图文开关灯切换特效,背景变暗,子内容向上滑动显示出来,鼠标的操作感极强,希望大家喜欢本效果。
运行效果截图如下:
具体代码如下:
<!DOCTYPE html> <html lang="en"> <head> <title>jQuery图文高亮滚动切换</title> <style> *{ margin:0; padding:0;} body{ font-family:"宋体"; font-size:12px;text-decoration:none; color:#292929; } h1,h2,h3,h4,h5,h6,p,input,select,td{margin:0;padding:0;} li{list-style:none;} .fl{float:left;} a{text-decoration:none;color:#353535;} img{border:0; vertical-align:top;} .clear{clear:both;} .grid1k { width: 990px; margin: 0 auto; } .grid_full { width: 100%; } .grid1024 { width: 1024px; margin: 0 auto; } .fr { float: right; } .fl { float: left; } .color_blue { color: #29388c; } .color_fff { color: #fff; } .color_333 { color: #333; } .color_666 { color: #666; } .color_999 { color: #999; } .color_orange { color: #e88d27; } .one_fourth_box { display: block; position: relative; width: 326px; height: 135px; margin: 0 2px 2px 0; background: #f6f6f6; overflow: hidden; } .ofb-r { margin-right: 0!important; } .ofb-bg { display: none; width: 100%; height: 100%; position: absolute; z-index: 2; background: #333; } .ofb-img { position: absolute; top: 32px; left: 13px; z-index: 10; } .ofb-img-bottom { position: absolute; top: 160px; left: 13px; z-index: 10; } .ofb-text { position: absolute; top: 25px; left: 144px; width:178px; z-index: 10; } .ofb-text-top { position: absolute; top: -110px; left: 144px; width: 178px; z-index: 10; } .ofb-text h5,.ofb-text-top h5 { font-size: 14px; line-height:16px; } .ofb-text p,.ofb-text-top p { margin-top: 3px; font-size:12px; font-family:"宋体"; line-height:15px; } .ofb-r .ofb-img,.ofb-r .ofb-img-bottom { left: 65px; } .ofb-r .ofb-text,.ofb-r .ofb-text-top { left: 235px; width: 265px; } .color_111{ font-size:14px; color: #999;} .color_222{ font-size:14px; color: #000;} </style> <script src="jquery-1.6.2.min.js"></script> <script> $(function(){ //服务 $('.one_fourth_box').each(function(){ $(this).hover(function(){ $(this).children('.ofb-img').stop(true).animate({top:'-135px'}) $(this).children('.ofb-img-bottom').stop(true).animate({top:'25px'}) $(this).children('.ofb-text').stop(true).animate({top:'160px'}) $(this).children('.ofb-text-top').stop(true).animate({top:'25px'}) $(this).children('.ofb-bg').stop(true,true).fadeIn(); },function(){ $(this).children('.ofb-img').stop(true).animate({top:'25px'}) $(this).children('.ofb-img-bottom').stop(true).animate({top:'160px'}) $(this).children('.ofb-text').stop(true).animate({top:'25px'}) $(this).children('.ofb-text-top').stop(true).animate({top:'-110px'}) $(this).children('.ofb-bg').stop(true,true).fadeOut(); }) }) }) </script> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head> <body> <p class="grid1k"> <a href="/" class="one_fourth_box fl"> <p class="ofb-bg" style="display: none;"></p> <p class="ofb-img mypng" style="top: 25px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113025969.jpg" width="118" height="78" alt=""></p> <p class="ofb-img-bottom mypng" style="top: 160px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113025969.jpg" width="118" height="78" alt=""></p> <p class="ofb-text" style="top: 25px;"> <h5 class="color_333">节 能/Saving</h5> <p class="color_666">玻璃窗是建筑物中隔热和保温最弱的环节。Sunscape太阳隔热膜能使窗户增加隔热和保 温性能,有助于增加舒适性</p> </p> <p class="ofb-text-top" style="top: -110px;"> <h5 class="color_orange">节 能/Saving</h5> <p class="color_999">玻璃窗是建筑物中隔热和保温最弱的环节。Sunscape太阳隔热膜能使窗户增加隔热和保 温性能,有助于增加舒适性</p> </p> </a> <a href="/" class="one_fourth_box fl"> <p class="ofb-bg" style="display: none;"></p> <p class="ofb-img mypng" style="top: 25px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113025969.jpg" width="118" height="78" alt=""></p> <p class="ofb-img-bottom mypng" style="top: 160px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113025969.jpg" width="118" height="78" alt=""></p> <p class="ofb-text" style="top: 25px;"> <h5 class="color_333">节 能/Saving</h5> <p class="color_666">玻璃窗是建筑物中隔热和保温最弱的环节。Sunscape太阳隔热膜能使窗户增加隔热和保 温性能,有助于增加舒适性</p> </p> <p class="ofb-text-top" style="top: -110px;"> <h5 class="color_orange">节 能/Saving</h5> <p class="color_999">玻璃窗是建筑物中隔热和保温最弱的环节。Sunscape太阳隔热膜能使窗户增加隔热和保 温性能,有助于增加舒适性</p> </p> </a> <a href="/" class="one_fourth_box fl"> <p class="ofb-bg" style="display: none;"></p> <p class="ofb-img mypng" style="top: 25px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113025969.jpg" width="118" height="78" alt=""></p> <p class="ofb-img-bottom mypng" style="top: 160px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113025969.jpg" width="118" height="78" alt=""></p> <p class="ofb-text" style="top: 25px;"> <h5 class="color_333">节 能/Saving</h5> <p class="color_666">玻璃窗是建筑物中隔热和保温最弱的环节。Sunscape太阳隔热膜能使窗户增加隔热和保 温性能,有助于增加舒适性</p> </p> <p class="ofb-text-top" style="top: -110px;"> <h5 class="color_orange">节 能/Saving</h5> <p class="color_999">玻璃窗是建筑物中隔热和保温最弱的环节。Sunscape太阳隔热膜能使窗户增加隔热和保 温性能,有助于增加舒适性</p> </p> </a> <a href="/" class="one_fourth_box ofb-r fl"> <p class="ofb-bg" style="display: none;"></p> <p class="ofb-img mypng" style="top: 25px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113741210.png" alt=""></p> <p class="ofb-img-bottom mypng" style="top: 160px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113518952.png" alt=""></p> <p class="ofb-text" style="top: 25px;"> <h5 class="color_333">移动互联网</h5> <p class="color_666">移动互联网:APP客户端开发,Android、IOS、Winphone 多平台支持</p> </p> <p class="ofb-text-top" style="top: -110px;"> <h5 class="color_orange">移动互联网</h5> <p class="color_999">移动互联网:手机网站建设、APP客户端开发,Android、IOS、Winphone 多平台支持</p> </p> </a> <a href="/" class="one_fourth_box fl"> <p class="ofb-bg" style="display: none;"></p> <p class="ofb-img mypng" style="top: 25px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113138004.png" alt=""></p> <p class="ofb-img-bottom mypng" style="top: 160px;"><img src="http://files.jb51.net/file_images/article/201508/2015810113033195.png" alt=""></p> <p class="ofb-text" style="top: 25px;"> <h5 class="color_333">网站运维</h5> <p class="color_666">您多长时间更新一次网站?每天、每周还是半年...<br> 网站运行的怎么样?给您带来收益了吗?<br> 网站的运营与维护将决定网站的生命质量。</p> </p> <p class="ofb-text-top" style="top: -110px;"> <h5 class="color_orange">网站运维</h5> <p class="color_999">您多长时间更新一次网站?每天、每周还是半年...网站运行的怎么样?给您带来收益了吗?网站的运营与维护将决定网站的生命质量。</p> </p> </a> <a href="/" class="one_fourth_box ofb-r fl"> <p class="ofb-bg" style="display: none;"></p> <p class="ofb-img mypng" style="top: 25px;"><img src="http://files.jb51.net/file_images/article/201508/2015810114041131.png" alt=""></p> <p class="ofb-img-bottom mypng" style="top: 160px;"><img src="http://files.jb51.net/file_images/article/201508/2015810114120324.png" alt=""></p> <p class="ofb-text" style="top: 25px;"> <h5 class="color_333">产品开发</h5> <p class="color_666">互联网功能性平台建设,定制化功能性网站产品销售。</p> </p> <p class="ofb-text-top" style="top: -110px;"> <h5 class="color_orange">产品开发</h5> <p class="color_999">互联网功能性平台建设,定制化网站产品开发服务。</p> </p> </a> </p> <p style="text-align:center;clear:both"><br> </p> </body> </html>
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上是jQuery做出图文高亮滚动切换效果详解的详细内容。更多信息请关注PHP中文网其他相关文章!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

jQuery引用方法详解:快速上手指南jQuery是一个流行的JavaScript库,被广泛用于网站开发中,它简化了JavaScript编程,并为开发者提供了丰富的功能和特性。本文将详细介绍jQuery的引用方法,并提供具体的代码示例,帮助读者快速上手。引入jQuery首先,我们需要在HTML文件中引入jQuery库。可以通过CDN链接的方式引入,也可以下载

jQuery中如何使用PUT请求方式?在jQuery中,发送PUT请求的方法与发送其他类型的请求类似,但需要注意一些细节和参数设置。PUT请求通常用于更新资源,例如更新数据库中的数据或更新服务器上的文件。以下是在jQuery中使用PUT请求方式的具体代码示例。首先,确保引入了jQuery库文件,然后可以通过以下方式发送PUT请求:$.ajax({u

jQuery如何移除元素的height属性?在前端开发中,经常会遇到需要操作元素的高度属性的需求。有时候,我们可能需要动态改变元素的高度,而有时候又需要移除元素的高度属性。本文将介绍如何使用jQuery来移除元素的高度属性,并提供具体的代码示例。在使用jQuery操作高度属性之前,我们首先需要了解CSS中的height属性。height属性用于设置元素的高度

标题:jQuery小技巧:快速修改页面所有a标签的文本在网页开发中,我们经常需要对页面中的元素进行修改和操作。在使用jQuery时,有时候需要一次性修改页面中所有a标签的文本内容,这样可以节省时间和精力。下面将介绍如何使用jQuery快速修改页面所有a标签的文本,同时给出具体的代码示例。首先,我们需要引入jQuery库文件,确保在页面中引入了以下代码:<

jQuery是一款广泛应用于前端开发的快速、小巧、功能丰富的JavaScript库。自2006年发布以来,jQuery已经成为众多开发者的首选工具之一,但是在实际应用中,它也不乏一些优势和劣势。本文将深度剖析jQuery的优势与劣势,并结合具体的代码示例进行说明。优势:1.简洁的语法jQuery的语法设计简洁明了,可以大大提高代码的可读性和编写效率。比如,

标题:使用jQuery修改所有a标签的文本内容jQuery是一款流行的JavaScript库,被广泛用于处理DOM操作。在网页开发中,经常会遇到需要修改页面上链接标签(a标签)的文本内容的需求。本文将介绍如何使用jQuery来实现这个目标,并提供具体的代码示例。首先,我们需要在页面中引入jQuery库。在HTML文件中添加以下代码:

如何判断jQuery元素是否具有特定属性?在使用jQuery操作DOM元素时,经常会遇到需要判断元素是否具有某个特定属性的情况。这种情况下,我们可以借助jQuery提供的方法来轻松实现这一功能。下面将介绍两种常用的方法来判断一个jQuery元素是否具有特定属性,并附上具体的代码示例。方法一:使用attr()方法和typeof操作符//判断元素是否具有特定属

jQuery是一种流行的JavaScript库,被广泛用于处理网页中的DOM操作和事件处理。在jQuery中,eq()方法是用来选择指定索引位置的元素的方法,具体使用方法和应用场景如下。在jQuery中,eq()方法选择指定索引位置的元素。索引位置从0开始计数,即第一个元素的索引是0,第二个元素的索引是1,依此类推。eq()方法的语法如下:$("s
