- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我讨厌讨厌IE!既然我已经咆哮了,我确实需要一些帮助。我这里有这个网站。 http://pearsonlyle.uwpistol.net/galleries/susie-theodorou/editorial/只有 susie 有效,我编写了一些 javascript,在单击导航时添加了覆盖层,我添加了一个函数来淡出导航覆盖层并将页面重定向到选定的链接,但在 IE8 中我的页面内容(Galleria)不显示。然而,在 IE7 中,我的页面内容(画廊)显示减去除一个缩略图之外的所有缩略图。
我已经取出了代码(resize.js 和 menus.js),但仍然找不到问题的根源,我知道在这些论坛上获得帮助的可能性很大,尤其是对于如此复杂的事情。我什至不确定我能否解释我的代码,但我确实需要帮助,所以我会尝试一下。
menus.js
function initMenuPhotographers() {
$('#navsub_533013_583913 ul').hide();
$('#navsub_533013_583913 li a').click(
function() {
var checkElement = $(this).next();
if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
return false;
}
if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
$('#navsub_533013_583913 ul:visible').slideUp('normal');
checkElement.slideDown('normal');
return false;
}
});
}
function initMenuStylists() {
$('#navsub_533015_584326 ul').hide();
$('#navsub_533015_584326 li a').click(
function() {
var checkElement = $(this).next();
if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
return false;
}
if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
$('#navsub_533015_584326 ul:visible').slideUp('normal');
checkElement.slideDown('normal');
return false;
}
});
}
function addNavLightbox(){
$("< div id='nav-overlay'>< /div>")
.css('top', $(document).scrollTop())
.css('opacity', '0')
.animate({'opacity':'0.8'}, 'slow')
.appendTo('body');
}
function removeNavLightbox(){
$('#nav-overlay')
.fadeOut('slow', function(){
$(this).remove();
});
}
function redirectPage() {
window.location.href = linkLocation;
}
$(document).ready(function() {
$("#navsub_533015_584326 li ul li a").click(function(event){
event.preventDefault();
linkLocation = this.href;
$('#nav-overlay').fadeOut(30, redirectPage);
});
initMenuPhotographers();
initMenuStylists();
$('#navsub_533013_583913').hide();
$('#navsub_533015_584326').hide();
$('#photographers').click(
function(){
$('#navsub_533013_583913').slideToggle();
});
$('#photographers').toggle(addNavLightbox, removeNavLightbox);
$('#stylists').click(
function(){
$('#navsub_533015_584326').slideToggle();
});
$('#stylists').toggle(addNavLightbox, removeNavLightbox);
});
我知道有很多代码,菜单有一个折叠式菜单,还有菜单的覆盖层。
我在另一个脚本中也有一个 Galleria 函数
$(document).ready(function(){
$(function () {
$.ajax({
type: "GET",
url: "img/PhotoGallery.xml",
dataType: "xml",
success: function(xml) {
$(xml).find('img').each(function() {
var location = 'img/';
var url = $(this).attr('src');
var alt = $(this).attr('alt');
$('< img src="'+location+''+url+'" alt="'+alt+'"/>').appendTo('#galleria');
});
// Load theme
Galleria.loadTheme('/js/src/themes/classic/galleria.classic.js');
$('#galleria').galleria({
image_crop: false, // crop all images to fit
thumb_crop: true, // crop all thumbnails to fit
transition: 'fade', // crossfade photos
transition_speed: 20, // slow down the crossfade
extend: function() {
this.bind(Galleria.IMAGE, function(e) {
$('.counter').html(this.$('counter').html());
})
var gallery = this;
var playing = false;
$('#playpause').bind('click', function() {
if (! playing) {
gallery.play();
$(this).text('Pause Slideshow');
} else {
gallery.pause();
$(this).text('Play Slideshow');
}
playing = !playing;
});
//get thumbnail width
var thumbnailWidth = $('.galleria-thumbnails').width();
$('.galleria-thumbnails').css({"width" : thumbnailWidth, "margin-left" : "auto", "margin-right" : "auto"})
$('.galleria-stage').css('z-index', '500');
}
});
}
});
})
});
如果有人能给我指出正确的方向,甚至告诉我如何在 IE 中调试,这个 Galleria 代码也可以在 IE 中的许多其他项目中工作,所以它不应该(她说)是这样......
我不是在寻找答案,只是希望有人有一些想法。
非常感谢您花时间阅读本文,我真的很感激。塔拉
最佳答案
尝试将 debug:true
选项添加到 gallery 小部件。这应该可以帮助您找出问题所在;
$('#galleria').galleria({
debug: true,
image_crop: false, // crop all images to fit
thumb_crop: true, // crop all thumbnails to fit
transition: 'fade', // crossfade photos
transition_speed: 20, // slow down the crossfade
extend: function() {
this.bind(Galleria.IMAGE, function(e) {
$('.counter').html(this.$('counter').html());
})
var gallery = this;
var playing = false;
$('#playpause').bind('click', function() {
if (! playing) {
gallery.play();
$(this).text('Pause Slideshow');
} else {
gallery.pause();
$(this).text('Play Slideshow');
}
playing = !playing;
});
//get thumbnail width
var thumbnailWidth = $('.galleria-thumbnails').width();
$('.galleria-thumbnails').css({
"width" : thumbnailWidth,
"margin-left" : "auto",
"margin-right" : "auto"});
$('.galleria-stage').css('z-index', '500');
}
});
关于jQuery document.location 不适用于 IE(典型),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4673239/
我正在尝试计算 iFrame 的高度,但不明白为什么 document.body.offsetHeight + document.body.bottomMargin 不等于 document.docu
我正在使用 Node/Mongoose/MongoDB 并尝试构建一个轮询应用程序。一个关键需求是跟踪单个用户对同一民意调查的响应如何随时间变化(他们一遍又一遍地进行同一民意调查)。 我有一个用户模型
首先,我不是普通的博主,我很困惑。如果我的问题不符合要求,请指导我。我会努力改进的。 我已提交 Microsoft Code Review 的 Microsoft CRM 插件。我是 JavaScri
谁能解释为什么使用类似的东西: gci -force "\\computername\c$\users\username\Documents" -recurse 或者 gci -force "\\co
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, over
这个问题已经有答案了: What is the (function() { } )() construct in JavaScript? (28 个回答) 已关闭 6 年前。 说实话,一开始我以为我可
document.getElementsByTagName("*") 适用于 IE/Firefox/Opera,但不适用于 Chrome 和 Safari。 document.all 适用于 IE/C
这个问题在这里已经有了答案: What is the difference between Document and document in JavaScript? (2 个答案) 关闭 8 年前。
我以某种方式发现将事件监听器添加到文档的行为有点奇怪。虽然向 HTMLElements 添加监听器工作正常,但向文档添加监听器不起作用。但奇怪的是,使用 jQuery 可以让它工作。 那么有人可以解释
谁能告诉我这两个 JavaScript 命令之间的区别? 这两个跨主要浏览器的兼容性是什么?我知道 documentElement 与大多数浏览器兼容。 谢谢 最佳答案 document.docume
什么时候应该使用 document.all 与 document.getElementById? 最佳答案 document.all 是 Microsoft 对 W3C 标准的专有扩展。 getEle
当升级到 react-native 0.61.2 时,这个问题出现了。我做到了从手机中删除了 apk 和自动链接使用 react-native link 然后 react-native run-and
当升级到 react-native 0.61.2 时,这个问题出现了。我做到了从手机中删除了 apk 和自动链接使用 react-native link 然后 react-native run-and
我将收到 tungstenite::Message ,它将包含来自客户端的bson文档。我可以将tungstenite::Message转换为Vec,但是如何在服务器端将其转换回 bson::docu
我这里有一个简单的疑问: 文档对象范围位于浏览器选项卡内:我的意思是如果我设置document.tab1 ='tab1' 在一个浏览器选项卡中 它在其他选项卡中不可用。 但是 document.coo
我经常使用并看到推荐的 dom 访问结构,例如这样动态地将内容添加到页面: loader = document.createElement('script'); loader.src = "myurl
我对 JQuery 还很陌生。我正在使用this JQuery 函数在元素上显示工具提示。 我根据我的需要(在这个社区的帮助下)以这种方式编辑了代码: $(document).ready(functi
我想知道哪个是运行js代码的正确方法,该代码根据窗口高度计算垂直菜单的高度并按时设置,不晚不早。 我正在使用 document.ready 但它并没有真正帮助我解决这个问题,它有时没有设置,我必须重新
我正在浏览一个 js 文件并发现这个声明var dataobj=document.all? document.all.id_name : document.getElementById("id_nam
想知道何时使用,这适用于什么浏览器? if (document.all&&document.getElementById) { // Some code block } 最佳答案 我认为没有任何重要的
我是一名优秀的程序员,十分优秀!