jQuery(document).ready(function($) {$('#table span').hover(function() {$(this).addClass("on").siblings().removeClass("on");$("#tab-content > div").eq($('#,秉承网络共享原则,分享网络资源,Windows系统下载,网络建站技术分享">
    当前位置:
  1. 首页 »
  2. 其他资源 »
  3. 正文

一款JQ渐显渐隐的TAB切换效果

零分 1,339

一款不错的JQ渐显渐隐代码

JS代码:

<script type="text/javascript">
jQuery(document).ready(function($) {
$('#table span').hover(function() {
$(this).addClass("on").siblings().removeClass("on");
$("#tab-content > div").eq($('#table span').index(this)).fadeIn(500).siblings().fadeOut(500);
});
});
</script>

鼠标移过切换,换点击,将hover换成click即可。 fadeIn(500),渐显,500是时间,ms!

CSS:

<style>
.table{width:320px;height:248px;overflow:hidden;margin:0 0 0 8px;border:1px solid #E6E6E6;}
.table .title{width:320px;height:28px;overflow:hidden;border-bottom:1px solid #E6E6E6;}
.table .title .one{width:160px;height:30px;line-height:30px;font-size:14px;overflow:hidden;margin:0;text-align:center;display:block;cursor:pointer}
.table .title .on{background-color:#FF5400;color:#fff;}
.table .box{width:300px;height:200px;overflow:hidden;padding:8px 10px;display:block;position:absolute;}
.table .box .li{background:url("li-style.png") 0 0 no-repeat;width:300px;height:200px;}
.table .box .li a{display:block;width:275px;height:20px;line-height:20px;margin-left:25px; overflow:hidden; whitewhite-space: nowrap;text-overflow: ellipsis;-o-text-overflow: ellipsis;color:#666;}
.f_l{float:left;}
</style>

CSS样式,这里注意box要给一个 position:absolute ,层进行叠加,否则切换的时候有明显的弹出效果!

html代码:

<div class="table" id="table">
<div class="title" id="fli">
<span class="one f_l on" >TAB选项卡1</span>
<span class="one f_l">TAB选项卡2</span>
</div>
<div id="tab-content">
<div class="box">
<div class="li">
<a href="//blog.32xp.com/phpstudy-mysql-450.html" title="PHPstudy搭建本地环境修改数据库上传大小" target="_blank">PHPstudy搭建本地环境修改数据库上传大小</a>
<a href="//blog.32xp.com/js-href-447.html" title="JS,JQ获取淘点金里的淘客链接href值" target="_blank">JS,JQ获取淘点金里的淘客链接href值</a>
<a href="//blog.32xp.com/adjs-445.html" title="淘点金JS被浏览器广告过滤屏蔽" target="_blank">淘点金JS被浏览器广告过滤屏蔽</a>
<a href="//blog.32xp.com/meiguorenapp-443.html" title="美国人每天玩手机APP时间首次超过看电视" target="_blank">美国人每天玩手机APP时间首次超过看电视</a>
<a href="//blog.32xp.com/wordpress-441.html" title="外站调用wordpress文章" target="_blank">外站调用wordpress文章</a>
<a href="//blog.32xp.com/wordpress-437.html" title="解决wordpress4.2以上外观菜单无法打开显示选项" target="_blank">解决wordpress4.2以上外观菜单无法打开显示选项</a>
<a href="//blog.32xp.com/php-435.html" title="PHP替换字符串preg_replace和str_replace的区别" target="_blank">PHP替换字符串preg_replace和str_replace的区别</a>
<a href="//blog.32xp.com/iphone6s-433.html" title="9月10日凌晨1点直播苹果发布会 6s全面曝光" target="_blank">9月10日凌晨1点直播苹果发布会 6s全面曝光</a>
<a href="//blog.32xp.com/jscode-431.html" title="JS+html点击运行文本框内代码" target="_blank">JS+html点击运行文本框内代码</a>
<a href="//blog.32xp.com/html5-video-427.html" title="html5音视频播放标签video" target="_blank">html5音视频播放标签video</a>
</div>
</div>
<div class="box" style="display:none;">
<div class="li">
<a href="//blog.32xp.com/adjs-445.html" title="淘点金JS被浏览器广告过滤屏蔽" target="_blank">淘点金JS被浏览器广告过滤屏蔽</a>
<a href="//blog.32xp.com/meiguorenapp-443.html" title="美国人每天玩手机APP时间首次超过看电视" target="_blank">美国人每天玩手机APP时间首次超过看电视</a>
<a href="//blog.32xp.com/wordpress-441.html" title="外站调用wordpress文章" target="_blank">外站调用wordpress文章</a>
<a href="//blog.32xp.com/wordpress-437.html" title="解决wordpress4.2以上外观菜单无法打开显示选项" target="_blank">解决wordpress4.2以上外观菜单无法打开显示选项</a>
<a href="//blog.32xp.com/php-435.html" title="PHP替换字符串preg_replace和str_replace的区别" target="_blank">PHP替换字符串preg_replace和str_replace的区别</a>
<a href="//blog.32xp.com/iphone6s-433.html" title="9月10日凌晨1点直播苹果发布会 6s全面曝光" target="_blank">9月10日凌晨1点直播苹果发布会 6s全面曝光</a>
<a href="//blog.32xp.com/jscode-431.html" title="JS+html点击运行文本框内代码" target="_blank">JS+html点击运行文本框内代码</a>
<a href="//blog.32xp.com/html5-video-427.html" title="html5音视频播放标签video" target="_blank">html5音视频播放标签video</a>
<a href="//blog.32xp.com/phpstudy-mysql-450.html" title="PHPstudy搭建本地环境修改数据库上传大小" target="_blank">PHPstudy搭建本地环境修改数据库上传大小</a>
<a href="//blog.32xp.com/js-href-447.html" title="JS,JQ获取淘点金里的淘客链接href值" target="_blank">JS,JQ获取淘点金里的淘客链接href值</a>
</div>
</div>
</div>
</div>

wordpress主题后台设置选项页完整下载

功能全,自定义强,可以方便随时增加/删除设置选项,后台数据仅插入一条wp_options表数据。 wordpress主题后台设置选项 文件:options.php 、CSS.css 后台设置预览: 功能可自定义修改代码设置 /** * 零分博客:https://www.32xp.com * 主题设置 *****/ $shortname = "Eson_"; //主题简写,必须是英文、数字、下划线组合 $ImgType=array("logo","favicon","encipher_qrcode","avatar","qrcode","banner"); $options = ar
其他资源 1,858

咪咕音乐电脑版,咪咕音乐电脑上下载安装,咪咕音乐第三方电脑版

咪咕音乐,你会惊奇的发现,很多其他地方需要VIP,会员才能听的歌,咪咕音乐上都能免费听... 其实不然,可能是因为移动经常赠送咪咕会员吧...反正至少,咪咕音乐上能听到的歌曲比其他地方多。 但是...咪咕没有电脑版的软件,只有移动端的APP,以前是有电脑版的,后来没有了... 当然,也有第三方的,只是...好像是因为接口升级,第三方也没有办法使用了... 还有,可以用谷歌?还是什么浏览器创建的一个微型的程序,安装在电脑上,但是...好像不能到托盘?还是...感觉不是很方便...于是,就有了这么一个咪咕音乐电脑版! 其实,他严格来讲,是一个浏览器框架,就是利用控件写了一个浏览器的web页面,将咪
其他资源 3,991

图片处理软件Fireworks CS6

Adobe fireworks cs6是一款功能强大的网页图形设计工具,相比ps的全面性,其更注重网页图形处理方面。提供编辑矢量图形与位图图像,简化了图形设计的工作难度,内置了一个预先构建资源的公用库,可以和PS、AI、DW等集成。它能轻易地完成大图切割、动态按钮、动态翻转图等,新手也可以上手,无需学习代码即可创建具有专业品质的网页图形和动画。欢迎下载软件绿色版,一键安装,方便实用。 在对图片简单处理的时候,还是习惯使用fireworks,官方已经不再更新,分享的是最后的版本,安装时需要断网安装,联网情况下会提示登录账号! 下载地址:百度网盘(提取码:r1yg)
其他资源 2,287

PHP汉字转拼音Class类

其实,百度下PHP汉字转拼音有很多代码,找了一个Class类,可能是较早的,目前只发现,囧,这个字转不出来 <?php    /* 汉字转化为拼音类    */   class Pinyin{                 /**      * 汉字ASCII码库        *         * @var array        */       protected $lib;                          /**      * 构造函数        *         * @return void        */       public funct
其他资源 2,441