【问题标题】:Coda Slider Problem - Works in Firefox, Not Chrome/SafariCoda Slider 问题 - 适用于 Firefox,不适用于 Chrome/Safari
【发布时间】:2010-01-16 02:31:20
【问题描述】:

我正在构建一个使用多个不同 javascript 元素的页面,但我似乎遇到了一个以前从未遇到过的问题(这并不奇怪,因为我是 javascript 新手)。

我已经实现了位于此处的 JQuery Coda Slider 教程:http://jqueryfordesigners.com/coda-slider-effect/

当我在 Firefox 上运行它而不是 Chrome 或 Safari 时,滑动效果似乎有效。想知道这是否是一个常见问题,以及我是否遗漏了一些明显的东西。

为了提供帮助,我附上了我正在处理的页面的代码,因为它可以帮助您理解我正在使用的脚本。

<head>
    <title></title>

    <link rel="stylesheet" href="stylesheets/style.css" media="screen" />

    <script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>
    <script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.2.73.js"></script>
    <script src= "js/banner.js"type="text/javascript"></script>
    <script src="js/menu.js" type="text/javascript"></script>
    <script src="js/jquery.localscroll-1.2.7-min.js" type="text/javascript"></script>
    <script src="js/jquery.scrollTo-1.4.2-min.js" type="text/javascript"></script>
    <script src="js/jquery.serialScroll-1.2.2-min.js" type="text/javascript"></script>
    <script src="js/slider.js" type="text/javascript"></script>

</head>

编辑:slider.js

// when the DOM is ready...
$(document).ready(function () {

var $panels = $('#slider .scrollContainer > div');
var $container = $('#slider .scrollContainer');

// if false, we'll float all the panels left and fix the width 
// of the container
var horizontal = true;

// float the panels left if we're going horizontal
if (horizontal) {
  $panels.css({
    'float' : 'left',
    'position' : 'relative' // IE fix to ensure overflow is hidden
  });

  // calculate a new width for the container (so it holds all panels)
  $container.css('width', $panels[0].offsetWidth * $panels.length);
}

// collect the scroll object, at the same time apply the hidden overflow
// to remove the default scrollbars that will appear
var $scroll = $('#slider .scroll').css('overflow', 'hidden');

// apply our left + right buttons
$scroll
  .before('<img class="scrollButtons left" src="images/scroll_left.png" />')
  .after('<img class="scrollButtons right" src="images/scroll_right.png" />');

// handle nav selection
function selectNav() {
  $(this)
    .parents('ul:first')
      .find('a')
        .removeClass('selected')
      .end()
    .end()
    .addClass('selected');
}

$('#slider .navigation').find('a').click(selectNav);

// go find the navigation link that has this target and select the nav
function trigger(data) {
  var el = $('#slider .navigation').find('a[href$="' + data.id + '"]').get(0);
  selectNav.call(el);
}

if (window.location.hash) {
  trigger({ id : window.location.hash.substr(1) });
} else {
  $('ul.navigation a:first').click();
}

// offset is used to move to *exactly* the right place, since I'm using
// padding on my example, I need to subtract the amount of padding to
// the offset.  Try removing this to get a good idea of the effect
var offset = parseInt((horizontal ? 
  $container.css('paddingTop') : 
  $container.css('paddingLeft')) 
  || 0) * -1;


var scrollOptions = {
  target: $scroll, // the element that has the overflow

  // can be a selector which will be relative to the target
  items: $panels,

  navigation: '.navigation a',

  // selectors are NOT relative to document, i.e. make sure they're unique
  prev: 'img.left', 
  next: 'img.right',

  // allow the scroll effect to run both directions
  axis: 'xy',

  onAfter: trigger, // our final callback

  offset: offset,

  // duration of the sliding effect
  duration: 500,

  // easing - can be used with the easing plugin: 
  // http://gsgd.co.uk/sandbox/jquery/easing/
  easing: 'swing'
};

// apply serialScroll to the slider - we chose this plugin because it 
// supports// the indexed next and previous scroll along with hooking 
// in to our navigation.
$('#slider').serialScroll(scrollOptions);

// now apply localScroll to hook any other arbitrary links to trigger 
// the effect
$.localScroll(scrollOptions);

// finally, if the URL has a hash, move the slider in to position, 
// setting the duration to 1 because I don't want it to scroll in the
// very first page load.  We don't always need this, but it ensures
// the positioning is absolutely spot on when the pages loads.
scrollOptions.duration = 1;
$.localScroll.hash(scrollOptions);

});

【问题讨论】:

  • @bgadoci 更重要的是实现滑块和附加事件等的实际 jQuery 代码。你能发布吗?可能通过像pastie.org 这样的服务,如果它真的很长。
  • @doug 我刚刚添加了 slider.js 代码。你说的是这个吗?
  • 是的!谢谢...这将有助于找到解决办法
  • 好的,通读一下代码,没有什么明显的。此时它可能是您的 HTML、您的 CSS 等。您可以将简单的 HTML 测试页面放在一起并将其上传到某个地方供我们/我进行故障排除吗?抱歉,我无法就发布的内容提供更多帮助。
  • 没问题,非常感谢您的帮助。给我一点点来搞定。

标签: javascript jquery firefox google-chrome


【解决方案1】:

经过数小时的搜索和调试,我找到了解决方案。 jQuery 干扰了 joomla 包括 mootools。在 index.php 标头中使用以下代码将其删除:

<?php 
        //remove mootools.js and caption.js
        $headerstuff=$this->getHeadData();
        reset($headerstuff['scripts']);
        foreach($headerstuff['scripts'] as $key=>$value){
          unset($headerstuff['scripts'][$key]);
        }       
        $this->setHeadData($headerstuff);
        ?>

【讨论】:

    【解决方案2】:

    你为什么不直接复制“http://jqueryfordesigners.com/demo/coda-slider.html”它是你需要的减少。记住你需要这些:

    <script src="jquery-1.2.6.js" type="text/javascript"></script> 
    <script src="jquery.scrollTo-1.3.3.js" type="text/javascript"></script> 
    <script src="jquery.localscroll-1.2.5.js" type="text/javascript" charset="utf-8"></script> 
    <script src="jquery.serialScroll-1.2.1.js" type="text/javascript" charset="utf-8"></script> 
    <script src="coda-slider.js" type="text/javascript" charset="utf-8"></script> 
    

    和 HTML 应该是相似的(查看源代码以了解)。它在 Chrome 中运行良好。

    【讨论】:

    • 这不是我所拥有的。我刚刚将 JQuery 的最新下载和 Scroll 系列文件名复制到了头部链接。我错过了什么?
    • 尝试复制和粘贴jqueryfordesigners.com/demo/coda-slider.html 它应该适用于所有浏览器。在不知道您的 HTML 或减少的样本的情况下,不知道您面临的问题是什么。一定是一些小的语法错误。尝试验证它。
    猜你喜欢
    • 2017-11-25
    • 2013-06-30
    • 1970-01-01
    • 2011-04-19
    • 2019-01-26
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多