body
{
font-family: "Microsoft YaHei UI","Microsoft YaHei",SimSun,"Segoe UI",Tahoma,Helvetica,Sans-Serif,"Microsoft YaHei", Georgia,Helvetica,Arial,sans-serif,宋体, PMingLiU,serif;
font-size: 10.5pt;
line-height: 1.5;
}
html, body
{

}
h1 {
font-size:1.5em;
font-weight:bold;
}
h2 {
font-size:1.4em;
font-weight:bold;
}
h3 {
font-size:1.3em;
font-weight:bold;
}
h4 {
font-size:1.2em;
font-weight:bold;
}
h5 {
font-size:1.1em;
font-weight:bold;
}
h6 {
font-size:1.0em;
font-weight:bold;
}
img {
border:0;
max-width: 100%;
}
blockquote {
margin-top:0px;
margin-bottom:0px;
}
table {
border-collapse:collapse;
border:1px solid #bbbbbb;
}
td {
border-collapse:collapse;
border:1px solid #bbbbbb;
}

用 JS 点击左右按钮 使图片切换 - 最精简版-ljx2380000-ChinaUnix博客

   代码部分:  

点击(此处)折叠或打开

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>实用的图片切换</title>
  6. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.js"></script>
  7. <!--<script type="text/javascript" src="jquery_change.js"></script>-->
  8. <style type="text/css">
  9.  body,ul,li { padding:0; margin:0}
  10.  ul,li { list-style:none}
  11.  .img-scroll { position:relative; margin:20px auto; width:440px;}
  12.  .img-scroll .prev,.img-scroll .next { position:absolute; display:block; width:50px; height:100px; background-color:#000;
  13.  top:0; color:#FFF; text-align:center; line-height:100px}
  14.  .img-scroll .prev { left:0;cursor:pointer;}
  15.  .img-scroll .next { right:0;cursor:pointer;}
  16.  .img-list { position:relative; width:320px; height:100px; margin-left:60px; overflow:hidden}
  17.  .img-list ul { width:9999px;}
  18.  .img-list li { float:left; display:inline; width:100px; margin-right:10px; height:100px; background-color:#BDBDDF; text-align:center; line-height:100px;}
  19. </style>
  20. </head>
  21. <body>
  22. <div class="img-scroll">
  23.     <span class="prev">prev</span>
  24.     <span class="next">next</span>
  25.     <div class="img-list">
  26.         <ul>
  27.             <li><img style="width:100px;height:100px;" src="./img/cat.jpg"></li>
  28.             <li><img style="width:100px;height:100px;" src="./img/katong.jpg"></li>
  29.             <li><img style="width:100px;height:100px;" src="./img/meinv.jpg"></li>
  30.             <li><img style="width:100px;height:100px;" src="./img/mm.jpg"></li>
  31.             <li><img style="width:100px;height:100px;" src="./img/慢慢.jpg"></li>
  32.             <li><img style="width:100px;height:100px;" src="./img/美食杰-糖糖.jpg"></li>
  33.             <li><img style="width:100px;height:100px;" src="./img/未命名44.jpg"></li>
  34.         </ul>
  35.     </div>
  36. </div>
  37. <script type="text/javascript">
  38.  function DY_scroll(wraper,prev,next,img,speed,or)
  39.  {
  40.   var wraper = $(wraper);
  41.   var prev = $(prev);
  42.   var next = $(next);
  43.   var img = $(img).find('ul');
  44.   var w = img.find('li').outerWidth(true);
  45.   var s = speed;
  46.   next.click(function()
  47.        {
  48.         img.animate({'margin-left':-w},function()
  49.                   {
  50.                    img.find('li').eq(0).appendTo(img);
  51.                    img.css({'margin-left':0});
  52.                    });
  53.         });
  54.   prev.click(function()
  55.        {
  56.         img.find('li:last').prependTo(img);
  57.         img.css({'margin-left':-w});
  58.         img.animate({'margin-left':0});
  59.         });
  60.   if (or == true)
  61.   {
  62.    ad = setInterval(function() { next.click();},s*1000);
  63.    wraper.hover(function(){clearInterval(ad);},function(){ad = setInterval(function() { next.click();},s*1000);});
  64.   }
  65.  }
  66.  DY_scroll('.img-scroll','.prev','.next','.img-list',3,false);// true为自动播放,不加此参数或false就默认不自动
  67. </script>
  68. </body>
  69. </html>

用 JS 点击左右按钮 使图片切换 - 最精简版-ljx2380000-ChinaUnix博客的更多相关文章

  1. PHP——0128练习相关2——js点击button按钮跳转到另一个新页面

    js点击button按钮跳转到另一个新页面 投稿:whsnow 字体:[增加 减小] 类型:转载 时间:2014-10-10我要评论 点击按钮怎么跳转到另外一个页面呢?点击图片要跳转到新的页面时,怎么 ...

  2. jquery带按钮的图片切换效果

    <!doctype html> <html> <head> <meta charset="gb2312"> <title> ...

  3. 用html5(requestFullscreen) js实现点击一个按钮使浏览器全屏效果

    项目中需要将后台浏览器的窗口全屏,也就是我们点击一个按钮要实现按F11全屏的效果. 在HTML5中,W3C制定了关于全屏的API,就可以实现全屏幕的效果,也可以让页面中的图片,视频等全屏目前只有goo ...

  4. JS 点击复制按钮 将文字复制到手机剪贴板

    我们在制作移动端网页的时候,经常会遇到这样一个问题,如何点击一个"复制"按钮,把一串文字复制到手机剪贴板,如上图所示. 看了网上的一些方法后,感觉那些方法都太复杂,有点要用插件,有 ...

  5. js实现点击上下按钮,图片向上向下循环滚动切换

    //popup.js //jquery.1.4.2-min.js (function(p,j){function u(){if(!c.isReady){try{v.documentElement.do ...

  6. js点击button按钮跳转到页面代码

    点击按钮怎么跳转到另外一个页面呢?我们在网站制作中可能是需要的,因为有时我们需要做这样的效果,尤其是将按钮做成一个图片,而点击图片要跳转到新的页面时,怎么做到呢? 这样的效果可以:onclick=&q ...

  7. js点击button按钮跳转到另一个新页面

    点击按钮怎么跳转到另外一个页面呢?我们在网站制作中可能是需要的,因为有时我们需要做这样的效果,尤其是将按钮做成一个图片,而点击图片要跳转到新的页面时,怎么做到呢? 这样的效果可以:onclick=&q ...

  8. 【基础篇】点击Button按钮更换图片

    我们在开发的过程中,往往为了美化界面的需要,会修改按钮的默认外观,而因为Android中的按钮有三种状态—默认,被点击,被选中.所以,如果要改变按钮的外观,需要对这三种情况都做出修改,也许在以往,我们 ...

  9. js点击重置按钮重置表单

    <html><head><script type="text/javascript">function formReset(){document ...

随机推荐

  1. iOS 最值宏定义

    NSIntegerMax.NSIntegerMin.NSUIntegerMax.MAXFLOAT

  2. ubuntu 安装LNMP

    How To Install Linux, nginx, MySQL, PHP (LEMP) stack on Ubuntu 12.04 PostedJune 13, 2012 802.8kviews ...

  3. eclipse无法导入已有android项目

    问题: 今天发现我拷贝的一个android项目无法导入到eclipse,但是其它的已有android项目却可以导入 思路 现在网络这么流行,当然是上网查,得益于eclipse无法导入Android工程 ...

  4. Android OpenGL ES(十三)通用的矩阵变换指令 .

    Android OpenGL ES 对于不同坐标系下坐标变换,大都使用矩阵运算的方法来定义和实现的.这里介绍对应指定的坐标系(比如viewmodel, projection或是viewport) An ...

  5. asm: Writing Inline Assembly

    A usual IA includes these parts: asm [volatile] ( AssemblerTemplate : OutputOperands [ : InputOperan ...

  6. HUD 1541/BIT(数状数组)

    题目链接 /* 按从左到右,从下到上的顺序给出星星的坐标,计算出level为[0,n)的星星的个数. 星星的level为该星星左下边(包括自己正下方的星星,但是不包括自己)星星的个数. BIT模板题. ...

  7. 快学Scala-第五章 类

    知识点: 1.简单类和无参方法 class Counter { private var value = 0 //必须初始化字段 def increment() { value += 1} //方法默认 ...

  8. java类对象

    不错的文章 原文地址:(转载)java中的Class类与Class对象作者:albert1017 本文用作笔记之用,引用的网上资料: http://www.blogjava.net/formatmys ...

  9. Windows API 之 CreateThread、WaitForSingleObject(未完)

    WaitForSingleObject Waits until the specified object is in the signaled state or the time-out interv ...

  10. java+tomcat+Eclipse+mysql配置

    Java下载及配置: 1. 下载:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html ...