Juery 实现淡出 淡现效果
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Cache-Control" content="no-transform " />
<title>无标题文档</title>
<script type="text/javascript" src="jquery-1.10.1.js"></script>
<style type="text/css"> ul,ol,li{list-style:none;}
.box{width:320px; height:240px;}
.box ul li {float:left; position:absolute; display:none;width:320px; height:240px;}
</style>
</head> <body>
<div class="box">
<ul>
<li><a href="#" target="_blank"><img src="data:images/1.jpg" width="350" height="240" /></a></li>
<li><a href="#" target="_blank"><img src="data:images/2.jpg" width="350" height="240" /></a></li>
<li><a href="#" target="_blank"><img src="data:images/3.jpg" width="350" height="240" /></a></li>
<li><a href="#" target="_blank"><img src="data:images/4.jpg" width="350" height="240" /></a></li>
<li><a href="#" target="_blank"><img src="data:images/5.jpg" width="350" height="240" /></a></li>
<li><a href="#" target="_blank"><img src="data:images/6.jpg" width="350" height="240" /></a></li>
</ul>
</div>
<input class="prev" type="button" value="向上" />
<input class="next" type="button" value="向下" />
</body>
</html>
<strong></strong>
Javascript:
$(function(){
var Get_next_j=$('.box ul li');
var Set_css_item={'display':'list-item','position':'relative','float':'left'};
var Set_css_none={'display':'list-item','position':'absolute','float':'left'};
var Set_time=2000;
var i=0;
Get_next_j.first().css(Set_css_item);
$('.next').click(function(){
if(!Get_next_j.eq(i).next().html())
{
Get_next_j.last().fadeOut(Set_time).css(Set_css_none);
Get_next_j.first().fadeIn(Set_time).css(Set_css_item);
i=0;
}
else{
Get_next_j.eq(i).fadeOut(Set_time).css(Set_css_none);
Get_next_j.eq(i).next().fadeIn(Set_time).css(Set_css_item);
i=i+1;}
});
$('.prev').click(function(){
if(i==0){
Get_next_j.first().fadeOut(Set_time).css(Set_css_none);
Get_next_j.last().fadeIn(Set_time).css(Set_css_item);
Get_next_j.each(function(index,element){
i=index;
});
}
else{
Get_next_j.eq(i).fadeOut(Set_time).css(Set_css_none);
Get_next_j.eq(i).prev().fadeIn(Set_time).css(Set_css_item);
i=i-1;}
});
});
Juery 实现淡出 淡现效果的更多相关文章
- 类似UC天气下拉和微信下拉眼睛头部弹入淡出UI交互效果(开源项目)。
Android-PullLayout是github上的一个第三方开源项目,该项目主页是:https://github.com/BlueMor/Android-PullLayout 原作者项目意图实现 ...
- QT窗口渐现效果,窗口震动效果,鼠标移动窗口
//窗口渐现效果void MainWindow::closeWindowAnimation() //关闭窗口效果 { QPropertyAnimation *animation = new QProp ...
- jQuery淡入淡出瀑布流效果
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- jQuery练手:仿新浪微博图片文字列表淡进淡出上下滚动效果
1.效果及功能说明 仿新浪微博图片文字列表上下淡进淡出间歇上下滚动 2.实现原理 首先要设定div内只能显示4个图片那么多出来的图片会自动隐藏然后在给图片添加一个动画的事件让他们可以滚动的播放出来上下 ...
- Unity3D中UGUI不使用DOTween制作渐隐渐现效果
在做UI后期设计时,我们可能要对UI做一些特效,这篇文章我们来学习下如何在Unity3d中对实现渐隐渐现的效果, 首先我们看下Unity New UI即UGUI中渐隐渐现的做法. 观察我们会发现Uni ...
- WPF实现渐变淡入淡出的动画效果
1.实现原理 1.1 利用UIElement.OpacityMask属性,用于改变对象区域的不透明度的画笔.可以使元素的特定区域透明或部分透明,从而实现比较新颖的效果. 1.2 OpacityMask ...
- WinForm利用 WinApi实现 淡入淡出 弹出 效果 仿QQ消息
消息框: using System.Runtime.InteropServices; namespace Windows_API_实现屏幕右下角_消息框_ { public partial class ...
- 在Unity5中使用C#脚本实现UI的下滑、变色、渐隐渐现效果
一.首先,我们先创建一个Text 依次选择Component→UI→Text创建一个Text,创建完成后如下: 二.创建完成后,在Project面板点击Create→C# Script,本例命名 ...
- css3 hover平滑过渡效果,鼠标经过元素,背景渐隐渐现效果
下面实例,演示,鼠标经过时,改变div宽度,平滑改变,带动画 div { width:100px; height:100px; background:blue; transition:width 2s ...
随机推荐
- Vysor_v1.6.9
---恢复内容开始--- 装系统 D:\home sys 触摸板驱动 1 D:\envs\common\jdk jdk安装 2 DriveTheLife 3 img 4 PCMaster 5 Sogo ...
- linux physical and virtual addressing modes
example 1: 特理地址和虚拟地址一致 Physical addressing mode requires no page tables and the CPU does not attempt ...
- Oracle Rman 增量备份与差异备份
一.增量与差异 关于Incremental增量备份级别: Oracle 9i 共有五种级别 0 1 2 3 4,0级最高-4级最低,0级是1级的基础以此类推. Oracle 10g官方文档明确指出增量 ...
- Oracle 将另外一张表的列更新到本表的列
Oracle写法: update temp_agentpay_df q set q.up_batch_bizid=(select c.batch_bizid from temp_df_id c whe ...
- python爬虫常见面试题(二)
前言 之所以在这里写下python爬虫常见面试题及解答,一是用作笔记,方便日后回忆:二是给自己一个和大家交流的机会,互相学习.进步,希望不正之处大家能给予指正:三是我也是互联网寒潮下岗的那批人之一,为 ...
- L1-038 新世界
这道超级简单的题目没有任何输入. 你只需要在第一行中输出程序员钦定名言“Hello World”,并且在第二行中输出更新版的“Hello New World”就可以了. 输入样例: 无 输出样例: H ...
- L217
China has announced that it will further simplify the approval procedures for the private sector to ...
- tomcat conf目录下文件的作用
本文以apache-tomcat-6.0.26为准介绍 1. web.xml: 默认(欢迎)文件的设置 配置包括:主要是配置servlet,包括初始化参数,设置session等 <serv ...
- 添加react-router
1.index.js 内容: import React from 'react' import ReactDOM from 'react-dom' import { renderRoutes } fr ...
- 构建你自己的论坛,基于windows服务器的xampp+discuz论坛
首先声明,论坛的构建需要基于企业,并且基于企业注册,然后进行域名备案. 此处作为研究,先示例: 1. 安装 xampp 软件,百度搜索 然后在服务器安装,基本都是默认安装,然后出来. 安装完成后,接下 ...