仿淘宝首页图片切换

 

 

 

资料来源:http://www.cnblogs.com/cloudgamer/archive/2008/07/06/SlideTrans.html?page=2#pagedcomment

 

效果展示:

测试环境:IE8 (待续)

 

  • T1_mxCXhBGXXXXXXXX-470-150.jpg
  • 100610131313970.gif
  • 100611120247446.jpg
  • 100611112912364.jpg
  • T1KpNDXmBaXXXXXXXX-470-150.gif

程序代码:

 

ContractedBlock.gifExpandedBlockStart.gif代码
<!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>
<title>仿淘宝首页图片切换</title>
<style type="text/css">
.container ul, .container li
{
list-style
: none;
margin
: 0;
padding
: 0;
}
.container, .container img
{
width
: 470px;
height
: 150px;
}
.load
{
/*此处background-position:50% 50% 似乎不作用(限blog页面)*/
background
: url(http://img02.taobaocdn.com/tps/i2/T16WJqXaXeXXXXXXXX-32-32.gif) #ebf5fa no-repeat 225px 55px;
width
: 470px;
height
: 150px;
overflow
: hidden;
}
.container img
{
border
: 0;
vertical-align
: top;
}
.num
{
position
: absolute;
right
: 5px;
bottom
: 5px;
font
: 12px/1.5 tahoma, arial;
height
: 18px;
}
.num li
{
float
: left;
color
: #d94b01;
text-align
: center;
line-height
: 16px;
width
: 16px;
height
: 16px;
font-family
: Arial;
font-size
: 11px;
cursor
: pointer;
margin-left
: 3px;
border
: 1px solid #f47500;
background-color
: #fcf2cf;
}
.num li.on
{
line-height
: 18px;
width
: 18px;
height
: 18px;
font-size
: 14px;
margin-top
: -2px;
background-color
: #ff9415;
font-weight
: bold;
color
: #FFF;
}
</style>
<script type="text/javascript">

var $$ = function (id) {
return "string" == typeof id ? document.getElementById(id) : id;
};

var Extend = function (destination, source) {
for (var property in source) {
destination[property]
= source[property];
}
return destination;
}

var CurrentStyle = function (element) {
return element.currentStyle || document.defaultView.getComputedStyle(element, null);
}

var Bind = function (object, fun) {
var args = Array.prototype.slice.call(arguments).slice(2);
return function () {
return fun.apply(object, args.concat(Array.prototype.slice.call(arguments)));
}
}

var forEach = function (array, callback, thisObject) {
if (array.forEach) {
array.forEach(callback, thisObject);
}
else {
for (var i = 0, len = array.length; i < len; i++) { callback.call(thisObject, array[i], i, array); }
}
}

var Tween = {
Quart: {
easeOut:
function (t, b, c, d) {
return -c * ((t = t / d - 1) * t * t * t - 1) + b;
}
},
Back: {
easeOut:
function (t, b, c, d, s) {
if (s == undefined) s = 1.70158;
return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
}
},
Bounce: {
easeOut:
function (t, b, c, d) {
if ((t /= d) < (1 / 2.75)) {
return c * (7.5625 * t * t) + b;
}
else if (t < (2 / 2.75)) {
return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
}
else if (t < (2.5 / 2.75)) {
return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
}
else {
return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
}
}
}
}


//容器对象,滑动对象,切换数量
var SlideTrans = function (container, slider, count, options) {
this._slider = $$(slider);
this._container = $$(container); //容器对象
this._timer = null; //定时器
this._count = Math.abs(count); //切换数量
this._target = 0; //目标值
this._t = this._b = this._c = 0; //tween参数

this.Index = 0; //当前索引

this.SetOptions(options);

this.Auto = !!this.options.Auto;
this.Duration = Math.abs(this.options.Duration);
this.Time = Math.abs(this.options.Time);
this.Pause = Math.abs(this.options.Pause);
this.Tween = this.options.Tween;
this.onStart = this.options.onStart;
this.onFinish = this.options.onFinish;

var bVertical = !!this.options.Vertical;
this._css = bVertical ? "top" : "left"; //方向

//样式设置
var p = CurrentStyle(this._container).position;
p
== "relative" || p == "absolute" || (this._container.style.position = "relative");
this._container.style.overflow = "hidden";
this._slider.style.position = "absolute";

this.Change = this.options.Change ? this.options.Change :this._slider[bVertical ? "offsetHeight" : "offsetWidth"] / this._count;
};
SlideTrans.prototype
= {
//设置默认属性
SetOptions: function (options) {
this.options = {//默认值
Vertical: true, //是否垂直方向(方向不能改)
Auto: true, //是否自动
Change: 0, //改变量
Duration: 30, //滑动持续时间
Time: 10, //滑动延时
Pause: 3000, //停顿时间(Auto为true时有效)
onStart: function () { }, //开始转换时执行
onFinish: function () { }, //完成转换时执行
Tween: Tween.Quart.easeOut//tween算子
};
Extend(
this.options, options || {});
},
//开始切换
Run: function (index) {
//修正index
index == undefined && (index = this.Index);
index
< 0 && (index = this._count - 1) || index >= this._count && (index = 0);
//设置参数
this._target = -Math.abs(this.Change) * (this.Index = index);
this._t = 0;
this._b = parseInt(CurrentStyle(this._slider)[this.options.Vertical ? "top" : "left"]);
this._c = this._target - this._b;

this.onStart();
this.Move();
},
//移动
Move: function () {
clearTimeout(
this._timer);
//未到达目标继续移动否则进行下一次滑动
if (this._c && this._t < this.Duration) {
this.MoveTo(Math.round(this.Tween(this._t++, this._b, this._c, this.Duration)));
this._timer = setTimeout(Bind(this, this.Move), this.Time);
}
else {
this.MoveTo(this._target);
this.Auto && (this._timer = setTimeout(Bind(this, this.Next), this.Pause));
}
},
//移动到
MoveTo: function (i) {
this._slider.style[this._css] = i + "px";
},
//下一个
Next: function () {
this.Run(++this.Index);
},
//上一个
Previous: function () {
this.Run(--this.Index);
},
//停止
Stop: function () {
clearTimeout(
this._timer); this.MoveTo(this._target);
}
};
</script>
</head>
<body>
<div class="container load" id="idContainer">
<ul id="idSlider">
<li><a href="#">
<img src="http://img08.taobaocdn.com/tps/i8/T1_mxCXhBGXXXXXXXX-470-150.jpg" alt="" />
</a></li>
<li><a href="#">
<img src="http://img.alimama.cn/bcrm/adboard/picture/2010-06-10/100610131313970.gif" alt="" />
</a></li>
<li><a href="#">
<img src="http://img.alimama.cn/bcrm/adboard/picture/2010-06-11/100611120247446.jpg" alt="" />
</a></li>
<li><a href="#">
<img src="http://img.alimama.cn/bcrm/adboard/picture/2010-06-11/100611112912364.jpg" alt="" />
</a></li>
<li><a href="#">
<img src="http://img01.taobaocdn.com/tps/i1/T1KpNDXmBaXXXXXXXX-470-150.gif" alt="" />
</a></li>
</ul>
<ul class="num" id="idNum">
</ul>
</div>
<script type="text/javascript">

var nums = [], timer, n = $$("idSlider").getElementsByTagName("li").length,

st
= new SlideTrans("idContainer", "idSlider", n, {
onStart:
function () {//设置按钮样式
forEach(nums, function (o, i) {
o.className
= st.Index == i ? "on" : "";
})
}
});

for (var i = 1; i <= n; AddNum(i++)) {
};
function AddNum(i) {
var num = $$("idNum").appendChild(document.createElement("li"));
num.innerHTML
= i--;
num.onmouseover
= function () {
timer
= setTimeout(function () { num.className = "on"; st.Auto = false; st.Run(i); }, 200);
}
num.onmouseout
= function () { clearTimeout(timer); num.className = ""; st.Auto = true; st.Run(); }
nums[i]
= num;
}
st.Run();
</script>
</body>
</html>

 

源代码下载

转载于:https://www.cnblogs.com/uedt/archive/2010/06/12/1757135.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/263906.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

NIO学习--缓冲区

Buffer其实就是是一个容器对象&#xff0c;它包含一些要写入或者刚读出的数据。在NIO中加入Buffer对象&#xff0c;体现了新库与原I/O的一个重要区别。在面向流的I/O中&#xff0c;您将数据直接写入或者将数据直接读到Stream对象中。在NIO库中&#xff0c;所有数据都是用缓冲区…

二分图匹配之匈牙利算法

二分图的基本概念&#xff1a; 二分图又称作二部图&#xff0c;是图论中的一种特殊模型。 设G(V,E)是一个无向图&#xff0c;如果顶点V可分割为两个互不相交的子集(A,B)&#xff0c;并且图中的每条边(i&#xff0c;j)所关联的两个顶点i和j分别属于这两个不同的顶点集(i in A,j …

使用javascript打开模态对话框

1. 标准的方法 <script type"text/javascript"> function openWin(src, width, height, showScroll){ window.showModalDialog (src,"","location:No;status:No;help:No;dialogWidth:"width";dialogHeight:"height";sc…

Go-select和switch的使用区别

Go-select和switch的使用区别 1 package main2 3 import (4 "fmt"5 "time"6 )7 8 func main() {9 i : 2 10 fmt.Print("Write ", i, " as ") //Write 2 as two 11 switch i { 12 case 1: 13 fmt.Prin…

linux 安装nginx php mysql 配置文件在哪_linux下 php+nginx+mysql安装配置

我主要是用来安装php&#xff0c;以及nginx和php的交互。一 安装插件可以选择YUM安装或者源码编译安装gccgcc-czlibpcrepcre-devellibeventlibevent-devellibxml2libxml2-devellibmcryptlibmcrypt-develcurl-devellibpng-devellibtool-ltdl-develgd-developensslopenssl-develn…

JDBC原理之层次结构

目录 JDBC的层次结构前言Collection角色Statement角色ResultSet角色JDBC工作的基本流程JDBC的层次结构 前言 JDBC API提供了以下接口和类&#xff1a; DriverManager: 这个类管理数据库驱动程序的列表。确定内容是否符合从Java应用程序使用的通信子协议正确的数据库驱动程序的连…

DES加密/解密

1 /// <summary>2 /// DES加密(数据加密标准&#xff0c;速度较快&#xff0c;适用于加密大量数据的场合)3 /// </summary>4 /// <param name"EncryptString">待加密的密文</param>5 /// <param name&qu…

Spring中使用Spark连接的DataSource

在Spring中配置Spark hive-thriftserver的连接DataSource与配置其他数据源连接方式是一样的&#xff0c;如一般Oracle数据源配置&#xff0c;使用如下必须的Jar包&#xff1a;使用JDBC程序示例&#xff1a;package com.hadoop.test;import java.sql.Connection; import java.sq…

多语言制作工具(2013-01-24更新,支持VS2005、2008、2010、2012)(已开源)

前一段时间&#xff0c;制作了一个多语言资源文件制作工具&#xff0c;现在把这个工具集成到VS2005、VS2008&#xff0c;vs2010中&#xff0c;以增加VS自身资源编辑界面&#xff0c;对多资源编辑的麻烦&#xff0c;简化多语言资源文件的制作。 这个插件是和VS的项目绑定的&…

Flatten Binary Tree to Linked List (DFS)

Given a binary tree, flatten it to a linked list in-place. For example,Given 1/ \2 5/ \ \3 4 6The flattened tree should look like: 1\2\3\4\5\6代码&#xff1a; class Solution{ public:void flatten(TreeNode *root) {if(rootNULL) return;TreeNode* proot-…

mysql 回表查询优化_MySQL优化:如何避免回表查询?什么是索引覆盖?

转自&#xff1a;https://mp.weixin.qq.com/s?__bizMjM5ODYxMDA5OQ&mid2651962609&idx1&sn46e59691257188d33a91648640bcffa5&chksmbd2d092d8a5a803baea59510259b28f0669dbb72b6a5e90a465205e9497e5173d13e3bb51b19&mpshare1&scene1&srcid&sh…

安装 Windows 自动化 API 3.0 后,Visual Studio 2010 的运行速度更快

安装 Windows 自动化 API 3.0 后&#xff0c;Visual Studio 2010 的运行速度更快 本文适用于以下产品&#xff1a; Microsoft Visual Studio 2010如果未安装 Windows 自动化 API 3.0&#xff0c;则使用 Windows 自动化 API 的应用程序会明显降低 Microsoft Visual Studio Inte…

使用ASP.Net WebAPI构建REST服务(一)——简单的示例

由于给予REST的Web服务非常简单易用&#xff0c;它越来越成为企业后端服务集成的首选方法。本文这里介绍一下如何通过微软的Asp.Net WebAPI快速构建REST-ful 服务。 首先创建一个Asp.Net Web应用程序&#xff08;我这里用的是Visual Studio 2013&#xff0c;它已经内置了Web AP…

告别花瓶:2015年智能电视路在何方?

智能手机与平板在IT市场风生水起&#xff0c;让几岁小孩到大爷大妈们都对玩手机、平板乐此不彼。曾经辉煌几十年的电视行业&#xff0c;如今又重新融合了智能系统以全新的面貌出现在人们面前。多家互联网企业对这一“翻新”的市场虎视眈眈&#xff0c;并推出了多款智能电视。但…

文件类型

转载于:https://www.cnblogs.com/hlc-123/p/10958326.html

灾备还缺一套评价体系

1月10日&#xff0c;灾备技术产业联盟正式成立。这样一个中立的、由业内众多厂商和大型用户组成的、以服务为宗旨的联盟将为我国灾备技术和应用的规范化发展做出积极贡献。经过一年多的酝酿、历经7次筹备会议&#xff0c;由华为、北京邮电大学、中治研国际信息技术研究院和中国…

DFS知识点

2019-06-01 11:14:34 加油&#xff0c;坚持&#xff01;&#xff01;&#xff01; 1. 2. 3. 转载于:https://www.cnblogs.com/Artimis-fightting/p/10960409.html

Android 反射获取内外置存储卡方法

2019独角兽企业重金招聘Python工程师标准>>> 以前的Android(4.1之前的版本)中&#xff0c;SDcard跟路径通过“/sdcard”或者“/mnt/sdcard”来表示存储卡&#xff0c;而在Jelly Bean系统中修改为了“/storage/sdcard0”&#xff0c;以后可能还会有多个SDcard的情况。…

docker安装mysql redis_Docker安装Mysql和Redis以及构建部署应用镜像

为了方便本地测试项目&#xff0c;为了方便开启新的环境&#xff0c;为了方便部署&#xff0c;打算本地利用Docker安装Mysql和Redis。搭建Springboot项目&#xff0c;编写Dockerfile&#xff0c;打包构建镜像。简单使用docker-compose启动服务。简述docker-compose和K8S。环境系…

Windows 下查看端口占用情况 netstat / tasklist / findstr

为什么80%的码农都做不了架构师&#xff1f;>>> Windows服务器不熟悉很多&#xff0c;尤其是防火墙这块。不过其实和Linux一样&#xff0c;省事的话就是关了就好了。不过对于端口占用还是时常有的&#xff0c;比如QQ音乐&#xff0c;迅雷这些&#xff0c;如果你的电…