【发布时间】:2015-02-21 22:57:51
【问题描述】:
我正在使用 Popcorn.js,它会创建以下 HTML 代码:
<div id="row-1">
<div style="display: none;">Hello</div>
</div>
但是当#row1 中的div 是display: inline 时,我现在尝试使用jQuery 将.myClass 添加/删除到.test。
我试过.height()、.lenght()和.width()(但是这个不行,因为div的宽度总是1246px)
任何帮助将不胜感激!
** 编辑 **
整个 HTML 代码:
<html>
<head>
<script src="http://popcornjs.org/code/dist/popcorn-complete.min.js"></script>
<script src="js/jquery-1.11.2.min.js"></script>
<style>
.myClass{
background: yellow !important;
}
</style>
<script>
// ensure the web page (DOM) has loaded
document.addEventListener("DOMContentLoaded", function () {
// Create a popcorn instance by calling the Youtube player plugin
var example = Popcorn.youtube(
'#video',
'https://www.youtube.com/embed/w9l4v1s9148?controls=1' );
example.footnote({
start: 1.2,
end: 1.7,
text: "Hello",
target: "row-1"
});
example.footnote({
start: 1.7,
end: 3.2,
text: "boys and girls",
target: "a2"
});
example.footnote({
start: 3.2,
end: 4.8,
text: "my name is FatLip,",
target: "a3"
});
example.footnote({
start: 4.8,
end: 7,
text: "and this is my friend, Simon the Salmon.",
target: "a4"
});
}, false);
</script>
</head>
<body>
<div id="video" style="width: 360px; height: 300px;" ></div>
<div id="row-1"></div>
<div id="a2"></div>
<div id="a3"></div>
<div id="a4"></div>
<div class="test" style="width: 10px; height: 10px; background: black;"></div>
</body>
</html>
【问题讨论】:
-
试试
$(el).is(":visible")
标签: jquery css dom visibility