`

图片轮播效果

阅读更多

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>11111111111</title>
<style>
html {}
body, ul {margin:0;padding:0}
li {list-style:none}
img {border:none;display:block}
.slide-wp {
width: 500px;
height: 300px;
overflow: hidden;
position: absolute;
left: 50%;
top: 50%;
margin-left: -250px;
margin-top: -150px;
}
.nav-wp {
position: absolute;
background: #ccc;
top: 50%;
margin-top: 170px;
left: 50%;
margin-left: -100px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
padding: 0 20px 6px 10px;
_padding: 0 20px 2px 10px;
}
.nav li {
float: left;
margin-left: 10px;
font-size: 20px;
font-weight: bold;
font-family: tahoma;
color: #22739e;
cursor: pointer;
height: 22px;
}
.nav li.cur{color: #ff7a00}
.next {
position:absolute;
top: 0;
left: 160px;
padding: 4px 8px;
color: #ff7a00;
background: #ccc;
height: 20px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
cursor: pointer;
}
</style>
</head>
<body><br><br>
<P align=center><a href="http://s-44827.gotocdn.com/" style=text-decoration:none target="_blank"><FONT color=#006600 size=5></a></FONT></P>

<div id="slider" class="slide-wp">
<ul>
<li><a href="http://s-44827.gotocdn.com/" target="_blank"><img src="musicback.jpg"  alt="" /></a></li>
<li><a href="http://s-44827.gotocdn.com/" target="_blank"><img src="1.jpg"  alt="" /></a></li>
<li><a href="http://s-44827.gotocdn.com/" target="_blank"><img src="2.jpg"  alt="" /></a></li>
<li><a href="http://s-44827.gotocdn.com/" target="_blank"><img src="3.jpg"  alt="" /></a></li>
<li><a href="http://s-44827.gotocdn.com/" target="_blank"><img src="4.jpg"  alt="" /></a></li>
</ul>
</div>
<div class="nav-wp">
<ul id="nav" class="nav">
<li onclick="mySlider.pos(0)">1</li>
<li onclick="mySlider.pos(1)">2</li>
<li onclick="mySlider.pos(2)">3</li>
<li onclick="mySlider.pos(3)">4</li>
<li onclick="mySlider.pos(4)">5</li>
</ul>
<a class="next" onclick="mySlider.move()">next</a>
</div>
<script type="text/javascript">
var HR = {
 $ : function(i) {return document.getElementById(i)},
 $$ : function(c, p) {return p.getElementsByTagName(c)},
 ce : function(i, t) {
  var o = document.createElement(i);
  t.appendChild(o);
  return o;
 }
};
HR.slider3D = function () {
 var init = function (o) {
  this.o = o;
  var wp = HR.$(o.id), ul = HR.$$('ul', wp)[0], li = this.li = HR.$$('li', ul);
  this.l = li.length;
  this.w = wp.offsetWidth;
  this.h = wp.offsetHeight;
  this.at = o.auto? o.auto : 4;
  var con = this.con = HR.ce('div', wp);
  con.style.cssText = 'position:absolute;left:0;top:0;width:'+this.w+'px;height:'+this.h+'px';
  ul.style['display'] = 'none'; 
  this.a1 = HR.ce('a', con); 
  this.a1.style.cssText = 'position:absolute;left:0;top:0;overflow:hidden'; 
  this.a2 = HR.ce('a', con);
  this.a2.style.cssText = 'position:absolute;top:0;right:0;overflow:hidden';
  this.a1.innerHTML = this.a2.innerHTML = '<img alt="" />';
  this.img = HR.$$('img', ul);
  this.s = o.maskSize ? o.maskSize : 5;
 
  this.mask11 = HR.ce('span', this.a1);
  this.mask12 = HR.ce('span', this.a1);
  this.mask21 = HR.ce('span', this.a2);
  this.mask22 = HR.ce('span', this.a2);
 
  this.pos(0);
 }
 init.prototype = {
  pos : function (i) {
   clearInterval(this.li[i].a); clearInterval(this.au); this.au = 0; this.cur = i;
   var navli = HR.$$('li', HR.$(this.o.navId));
   for (var j=0; j<navli.length; j++) {
    navli[j].className = i == j ? 'cur' : '';
   }
   var img1 = HR.$$('img', this.a1)[0], img2 = HR.$$('img', this.a2)[0], _this = this;
   img1.src = i==0 ? this.img[this.l-1].src : this.img[i-1].src;
   img1.width = this.w;
   img2.src = this.img[i].src;
   img2.width = 0;
   img1.height = img2.height = this.h;
   this.mask11.style.cssText = 'position:absolute;left:0;top:0;font-size:0;overflow:hidden;width:0;height:0;border-color:black transparent transparent black;border-style:solid dashed dashed solid;border-width:0 '+this.w/2+'px';
   this.mask12.style.cssText = 'position:absolute;left:0;bottom:0;font-size:0;overflow:hidden;width:0;height:0;border-color:transparent transparent black black;border-style:dashed dashed solid solid;border-width:0 '+this.w/2+'px';
   this.mask21.style.cssText = 'position:absolute;right:0;top:0;font-size:0;overflow:hidden;width:0;height:0;border-color:black black transparent transparent;border-style:solid solid dashed dashed;border-width:0px';
   this.mask22.style.cssText = 'position:absolute;right:0;bottom:0;font-size:0;overflow:hidden;width:0;height:0;border-color:transparent black black transparent;border-style:dashed solid solid dashed;border-width:0px';
   this.li[i].a = setInterval(function(){_this.anim(i)}, 20);
  },
  anim : function (i) {
   var w1 = HR.$$('img', this.a1)[0].width, w2  = HR.$$('img', this.a2)[0].width;
   if (w2 == this.w) {
    clearInterval(this.li[i].a);
    HR.$$('img', this.a1)[0].width = 0;
    HR.$$('img', this.a2)[0].width = this.w;
    this.mask11.style.borderLeftWidth = this.mask11.style.borderRightWidth = this.mask12.style.borderLeftWidth = this.mask12.style.borderRightWidth = '0px';
    this.mask11.style.borderTopWidth = this.mask11.style.borderBottomWidth = this.mask12.style.borderTopWidth = this.mask12.style.borderBottomWidth = this.h/this.s + 'px';
    this.mask21.style.borderLeftWidth = this.mask21.style.borderRightWidth = this.mask22.style.borderLeftWidth = this.mask22.style.borderRightWidth = this.w/2 + 'px';
    this.mask21.style.borderTopWidth = this.mask21.style.borderBottomWidth = this.mask22.style.borderTopWidth = this.mask22.style.borderBottomWidth = '0px';
   }else {
    HR.$$('img', this.a1)[0].width -= Math.ceil((this.w-w2)*.13);
    HR.$$('img', this.a2)[0].width += Math.ceil((this.w-w2)*.13);
    this.mask11.style.borderLeftWidth = this.mask11.style.borderRightWidth = this.mask12.style.borderLeftWidth = this.mask12.style.borderRightWidth = HR.$$('img', this.a1)[0].width/2 + 'px';
    this.mask11.style.borderTopWidth = this.mask11.style.borderBottomWidth = this.mask12.style.borderTopWidth = this.mask12.style.borderBottomWidth = HR.$$('img', this.a2)[0].width*this.h/(this.s*this.w) + 'px';
    this.mask21.style.borderLeftWidth = this.mask21.style.borderRightWidth = this.mask22.style.borderLeftWidth = this.mask22.style.borderRightWidth = HR.$$('img', this.a2)[0].width/2 + 'px';
    this.mask21.style.borderTopWidth = this.mask21.style.borderBottomWidth = this.mask22.style.borderTopWidth = this.mask22.style.borderBottomWidth = this.h/this.s - HR.$$('img', this.a2)[0].width*this.h/(this.s*this.w) + 'px';
    if (!this.au) this.auto();
   }
  },
  auto : function () {
   var _this = this;
   this.au = setInterval(function(){_this.move()}, this.at*1000);
  },
  move : function () {
   var n = this.cur==this.l-1 ? 0 : this.cur+1;
   this.pos(n);
  }
 }
 return init;
}();
var mySlider = new HR.slider3D({
 id: 'slider',
 maskSize: 6,
 navId: 'nav',
 auto: 4
})</script>
</body>
</html>

分享到:
评论

相关推荐

    WPF3D图片轮播效果

    在本文中,我们将深入探讨如何在Windows Presentation Foundation (WPF) 中实现3D图片轮播效果。WPF是Microsoft提供的一种强大的用户界面框架,它允许开发者创建丰富的、交互式的桌面应用程序,其中包括对2D和3D图形...

    图片轮播效果JS网页特效

    在网页设计中,图片轮播效果是一种常见的交互式展示手段,用于在有限的空间内展示多张图片或内容。JS(JavaScript)是实现这种效果的主要工具,因为它提供了丰富的动态功能和良好的用户交互性。本资源“图片轮播效果...

    前端图片轮播效果

    在前端开发中,图片轮播效果是常见的网页交互设计元素,用于展示一组图片或内容,增强用户体验。"前端图片轮播效果"这个主题涉及到的主要知识点包括HTML、CSS、JavaScript以及可能用到的库和框架。 首先,HTML是...

    使用纯CSS3实现图片轮播效果源码免费下载

    【标题】中的“使用纯CSS3实现图片轮播效果源码免费下载”表明我们要讨论的是一个基于CSS3技术实现的图片轮播效果,且提供源码供用户免费下载。CSS3是层叠样式表的第三版,是Web设计领域的重要组成部分,它提供了...

    jQuery插件实现图片轮播效果

    使用插件实现图片轮播效果: 通过设置传入的参数autoScroll,numControl和arrowControl的值可以显示不同的效果 图片轮播效果一:设置autoScroll=true,numControl=false,arrowControl=false,图片自动轮播,当鼠标...

    网页 图片轮播效果

    网页图片轮播效果是一种常见的网页设计元素,用于展示一组图片并自动进行连续切换,为用户提供动态的视觉体验。这种效果通常应用于产品展示、新闻滚动、幻灯片展示等场景。在网页开发中,图片轮播可以使用各种前端...

    flash图片轮播效果,网站图片新闻效果

    在网页设计中,图片轮播效果是常见的展示方式,它能高效地利用有限的空间来展示多张图片,增强用户体验。本教程将详细讲解如何利用Flash技术实现“图片轮播效果”,以及如何将其应用于网站的新闻展示。 首先,我们...

    漂亮的图片轮播效果(带暂停按钮控制)

    在网页设计中,图片轮播效果是一种常见的展示方式,它能有效地吸引用户的注意力并优雅地展示多张图片。"漂亮的图片轮播效果(带暂停按钮控制)"是这个主题的核心内容,它涉及到前端开发中的CSS样式设计、JavaScript...

    JS实现5张图片轮播效果

    【JS实现5张图片轮播效果】是一种常见的网页动态效果,用于展示一组图片并自动进行切换,提升用户体验。在这个项目中,我们有以下几个关键知识点: 1. **JavaScript基础**:JavaScript是网页动态效果的主要实现语言...

    Unity__Item图片轮播效果

    具体效果看博文:https://blog.csdn.net/Le_Sam/article/details/85388026

    简单的Jqury图片轮播效果

    **jQuery图片轮播效果**是一种常见的网页动态展示技术,它通过使用JavaScript库jQuery来实现图片的自动切换,为用户带来视觉上的连续性与吸引力。在网页设计中,这种功能经常被用于产品展示、幻灯片或者首页焦点图等...

    div+css js图片轮播效果

    【标题】:“div+css js图片轮播效果” 在网页设计中,图片轮播是一种常见的交互元素,用于展示多张图片或内容,并在用户界面中以动态的方式切换。本项目着重探讨如何使用HTML的`div`元素、CSS样式以及JavaScript...

    jquery 3D h5图片轮播效果

    当我们谈论"jQuery 3D h5图片轮播效果"时,我们指的是利用jQuery库和HTML5技术实现的一种具有三维视觉效果的图片轮播组件。 首先,这种3D轮播效果通常会借助CSS3的3D转换功能,这允许我们在不使用插件的情况下,在...

    js实现图片轮播效果

    在本资源中,我们将探讨如何利用JS实现图片轮播效果,这是一种常见的网页动态展示手法,可以有效地吸引用户注意力,提升用户体验。 图片轮播效果通常包括自动切换、手动切换、过渡动画等功能。下面我们将详细讲解...

    图片轮播效果另类展示

    在网页设计中,图片轮播效果是一种常见的交互展示方式,用于在有限的空间内展示多张图片。本项目名为“图片轮播效果另类展示”,它包含独立的样式表(CSS)、脚本(JavaScript)文件以及图片资源,展示了作者对图片...

    flex 图片轮播效果

    在IT行业中,图片轮播效果是一种常见的网页设计元素,它能够以吸引人的动态方式展示一组图片,提升用户体验。"flex 图片轮播效果"是指利用Adobe Flex这一开发框架来实现这种功能。Flex是一款基于ActionScript和MXML...

    qt QLabel实现图片轮播效果

    在本教程中,我们将探讨如何利用Qt5中的QLabel控件来实现图片轮播效果,这将使你的应用程序更加生动和吸引人。下面,我们将详细介绍实现这一功能的关键步骤和技术。 首先,你需要确保已经安装了Qt开发环境,并且...

    jquery图片放大镜图片轮播效果

    在网页设计中,为了提升用户体验,常常会使用到图片放大镜和图片轮播效果。"jQuery图片放大镜图片轮播效果"是一个集成了这两种功能的JavaScript插件,它利用jQuery库的强大功能,使得图片展示更加生动和交互性更强。...

    图片轮播效果实现

    图片轮播效果是一种常见的网页设计元素,用于展示一组图片并自动循环播放,为用户提供动态的视觉体验。在网页设计和开发中,实现图片轮播有多种方法,包括使用JavaScript、CSS3、jQuery以及Flash等技术。本篇将重点...

    仿京东商城 图片轮播效果

    在网页设计中,图片轮播效果是一种常见的视觉展示方式,用于吸引用户的注意力并展示多张图片或产品信息。本示例“仿京东商城 图片轮播效果”旨在模仿京东商城网站上的图片滑动展示功能,为用户提供一种动态且吸引人...

Global site tag (gtag.js) - Google Analytics