JS幻灯片以一种方式工作

时间:2013-03-11 12:21:42

标签: javascript css slideshow

我的幻灯片正在遭受不稳定的行为。它由用户点击的寻呼机驱动。当单击相应的寻呼机时,使下一个图像可见(不透明度/滤波器)并设置为z-index 5,使其位于当前图像下方(z-index 10)。然后,当前图像淡出,最后,下一个图像设置为当前,淡出的图像设置为z-index 0.但是,这仅在单击回到上一个图像时有效(在Chrome中,即表现得更奇怪。)按照图像的顺序。也就是说,

  • chrome:
  • “list_slide1”到“list_slide3”即时跳转,没有淡入淡出
  • “list_slide3”到“list_slide1”fade行为正确
  • ,然后...
  • “list_slide1”到“list_slide3”即时跳转没有淡入淡出“list_slide3”到
  • “list_slide2”fade行为正确
  • 或......
  • “list_slide1”到“list_slide6”即时跳转不退色
  • “list_slide6”到任何前面的列表 - slide1-5淡入淡出行为
  • IE:
  • “list_slide1”到“list_slide3”即时跳转,没有淡入淡出
  • “list_slide3”到“list_slide1”第二次暂停然后跳转

寻呼机和图像是从数据库动态生成的(因此代码底部是PHP的一小部分)。它包含与数据库中页面列出的项目一样多的项目。

一些注释:

  

1)淡入淡出功能是我自己的看法   http://javascript.info/tutorial/animation并且工作得很好   另一个幻灯片在网站的其他地方。

     

2)getElementsByClass来自http://www.robertnyman.com并返回   数组中请求的类的父元素和子元素(因此   为什么我称之为当前[0]等。)

感谢。

<script type="text/javascript">


var pager = document.getElementById('pager1');
var list_pagers = document.getElementById('pagers')
var i = 0;

var next_slide = function(next) {  
  if (next.className !== 'slide_current') {

    if (getElementsByClassName('slide_pending').length === 0) {
      var current = getElementsByClassName('slide_current');
      next.className = 'slide_pending';
      next.style.zIndex = 5;
      next.style.opacity = 1;
      next.style.filter = 'alpha(opacity = 100)';
      next.style.display = 'block';
      fade(current[0], linear, 1000);
      var fadeSlide = switcher(next, current);   
    }
  }  
}

var switcher = function(now, then) {

  setTimeout(function() {
  now.className = 'slide_current';
  now.style.zIndex = 10;
  now.style.opacity = 1;
  now.style.filter = 'alpha(opacity = 100)';

  then[0].className = 'slide_hide';
  then[0].style.zIndex = 0;

  then[0].style.opacity = 0;
  then[0].style.filter = 'alpha(opacity = 0)';
  then[0].style.display = 'none';
  }, 1001);
}

<?php
// dynamically build event for each pager/slide in the show.
for ($k = 1; $k <= $i; $k++) {
  echo  'var next_slide' .$k. ' = document.getElementById("list_slide" +' .$k. '); ',
        'addEvent(list_pagers.childNodes[' .($k - 1). '], "click", function () {next_slide(next_slide' .$k. ')}); ';
}
?>

2 个答案:

答案 0 :(得分:1)

请原谅我没有发布您确切问题的答案,但我会因为以下原因而避免自己编写Javascript插件:

  • 已经有数百个网络存在于网络上,其中一些是在GitHub上开发的,可以通过协作开发来防止潜在的问题。
  • 没有必要重新发明轮子;只需花20分钟谷歌搜索javascript滑块,找到一个可以根据需要自定义的滑块。

我喜欢使用的是'caroufredsel',它具有响应性并提供了一些不错的功能(动态添加项目,回调等)。

另一个是'flexslider'。

答案 1 :(得分:0)

解决方案:

问题在于我试图淡化的<div>标签包含<img>和另一个<div> ...正在应用的CSS要么是不一致/不正常地工作,要么是 - IE是不会 - 根本不是....解决方案是 - 而不是动画父<div>的淡入淡出 - 分别为各个子组件设置动画。起初,看起来IE解决方案完全是自己的;实际上,为所有浏览器创建一个简洁,轻量级的非JQuery幻灯片是很有见地的。一个权衡是我必须将所有样式合并到元素标签中,而不是单独的CSS。由于DOM请求的性质,这似乎是这种情况下唯一可行的选择...... 感谢收到的问题/反馈:

 <script type="text/javascript">
var list_pagers = document.getElementById('pagers')
var i = 0;

<?php
// dynamically build event for each pager/slide in the show.
for ($k = 1; $k <= $i; $k++) {
  echo  'var next_slide' .$k. ' = document.getElementById("list_slide" +' .$k. '); ',
        'addEvent(list_pagers.childNodes[' .($k - 1). '], "click", function () {next_slide(next_slide' .$k. ')}); ';
}
?>

var next_slide = function(next) {  
  if (next.className !== 'slide_current') {
      if (navigator.appName === 'Microsoft Internet Explorer') {
        //IE 7 & 8 
        if ((navigator.appVersion.search('MSIE 8.0') >= 1) || (navigator.appVersion.search('MSIE 7.0') >= 1)) {

          var current = getElementsByClassName('slide_current')[0].childNodes[0];
          var currentBar = getElementsByClassName('slide_current')[0].childNodes[1];
          var nextBar = next.childNodes[1]; 
          var nextSlide = next.childNodes[0];
        } else {
        //IE 9
          var current = getElementsByClassName('slide_current')[0].childNodes[1];
          var currentBar = getElementsByClassName('slide_current')[0].childNodes[2];
          var nextBar = next.childNodes[2]; 
          var nextSlide = next.childNodes[1];
        }

        // give the next slide and its header (nextBar) a temporary status of zIndex 5/6
        nextSlide.style.zIndex = 5;
        nextBar.style.zIndex = 6;
        nextSlide.style.filter = "alpha(opacity=100)";
        nextBar.style.filter = "alpha(opacity=85)";

        fade(currentBar, linear, 500); // fade currentBar out
        fade(current, linear, 500); // fade current out

        //once we've faded out current slides, it's time to replace them with th
        setTimeout(function() {
          getElementsByClassName('slide_current')[0].className = 'slide_hide';
          next.className = 'slide_current';
          nextSlide.style.opacity = 1; // IE 9 includes opacity...
          nextBar.style.opacity = 1; // IE 9 includes opacity...
          nextSlide.style.filter = "alpha(opacity=100)";  
          nextBar.style.filter = "alpha(opacity=85)";
          nextSlide.style.zIndex = 10;
          nextBar.style.zIndex = 11;
        }, 500);         

    } else {
      // NON IE TAGS    
      var current = getElementsByClassName('slide_current')[0];
      current.childNodes[1].style.zIndex = 10; // [1] the child <img> tag
      current.childNodes[2].style.zIndex = 11; // [2] the child <div> tag
      current.childNodes[1].style.opacity = 1;
      current.childNodes[2].style.opacity = 0.85;    
      next.childNodes[1].style.zIndex = 5;
      next.childNodes[2].style.zIndex = 6;
      next.childNodes[1].style.opacity = 1;
      next.childNodes[2].style.opacity = 0.85;      
      fade(current.childNodes[1], linear, 600); // fade current out
      fade(current.childNodes[2], linear, 600); // fade current out
      var fadeSlide = setTimeout(function() {switcher(next, current)}, 500); 
      var switcher = function(now, then, nowBar, thenBar) {

        then.className = 'slide_hide';
        then.childNodes[1].style.opacity = 0;
        then.childNodes[2].style.opacity = 0;
        now.className = 'slide_current';  
        now.childNodes[1].style.opacity = 1;
        now.childNodes[2].style.opacity = 0.85;
        now.style.opacity = 1;
      }
    }
  }  
}


</script>