0

在我的网站上:http: //windowsphonedaily.blogspot.com/

每当我尝试添加任何 JavaScript 函数(如“continuous: true”)时,我首先注意到 EasySlider 1.7 存在问题。完成后,两个导航按钮(prevBtn 和 nextBtn)就会消失,因此我必须撤消所做的任何更改。然后我意识到我用于文章图像的简单灯箱无法正常工作,只能充当图片的正常直接链接。

所以我认为问题很可能出在我网站的 Javascript 中。我通常遵循教程和指南中的示例,所以我真的不知道如何在不冲突的情况下实现多个脚本。

一般来说,我对 Javascript 了解不多,所以我要提醒你我是菜鸟!

这是我当前使用 Lightbox 和 EasySlider 的设置。我敢肯定这可能是我犯的一些愚蠢的错误,但任何帮助都会受到赞赏!谢谢!

  <!--Light Box Code Starts  Bloggerplugins.ORG-->
  <style>
    #lightbox{    position: absolute;    left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
    #lightbox img{ width: auto; height: auto;}
    #lightbox a img{ border: none; }

    #outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
    #imageContainer{ padding: 10px; }

    #loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
    #hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
    #imageContainer&gt;#hoverNav{ left: 0;}
    #hoverNav a{ outline: none;}

    #prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
    #prevLink { left: 0; float: left;}
    #nextLink { right: 0; float: right;}
    #prevLink:hover, #prevLink:visited:hover { background: url(http://lh5.ggpht.com/_u4gySN2ZgqE/SnWk89-4azI/AAAAAAAAAj8/hM0MqnVouCQ/prevlabel%5B3%5D.gif) left 15% no-repeat; }
    #nextLink:hover, #nextLink:visited:hover { background: url(http://lh6.ggpht.com/_u4gySN2ZgqE/SnWk9-mNiQI/AAAAAAAAAkA/Zg1jXV9xnQM/nextlabel%5B6%5D.gif) right 15% no-repeat; }

    #imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%    ; }

    #imageData{    padding:0 10px; color: #666; }
    #imageData #imageDetails{ width: 70%; float: left; text-align: left; } 
    #imageData #caption{ font-weight: bold;    }
    #imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;    }         
    #imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}      

    #overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
round-color: #000; }
lute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
round-color: #000; }
  </style>
  <script src='http://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js' type='text/javascript'/>
  <script src='http://ajax.googleapis.com/ajax/libs/scriptaculous/1.8.3/scriptaculous.js' type='text/javascript'/>
  <script src='http://blogergadgets.googlecode.com/files/lightbox.js' type='text/javascript'/>
<!--Light Box Code Ends Bloggerplugins.ORG-->

<script src='https://sites.google.com/site/shawnhasinger/home/files/jquery.js' type='text/javascript'/>

<script src='https://sites.google.com/site/shawnhasinger/home/files/easySlider1.7.js' type='text/javascript'/>

<script type='text/javascript'>
$(document).ready(function(){
    $(&quot;#slider&quot;).easySlider();
});
</script>

更新:我在这个网站上尝试了详细的修复,它修复了 Lightbox,但它破坏了 EasySlider。

4

1 回答 1

1

我不是 Javascript 方面的专家,但经过多次试验和错误后,我终于让它工作了。首先,对于灯箱,我使用了 Slimbox2。然后我确保 jquery 脚本出现在 Slimbox2 脚本之前。我把 EasySlider 脚本放在最后。

于 2012-05-23T14:01:34.007 回答