我不是最好用javascript,我被要求将它包含在我正在创建的页面中。我快到了,拿到一个包含视频的盒子,从上面滑过屏幕并创建一个黑暗的叠加层。我只能使用图像来使用它。我想从href文本链接激活它。我到处寻找,但我看到的一切都使用相同的方法,使用图像。有人可以帮忙吗?
$(function() {
$('#activator').click(function() {
$('#overlay').fadeIn('fast', function() {
$('#box').animate({
'top': '120px'
}, 500);
});
});
$('#boxclose').click(function() {
$('#box').animate({
'top': '-500px'
}, 500, function() {
$('#overlay').fadeOut('fast');
});
});
});
a.activator {
background: url(Overlay/clickme.png) no-repeat top left;
z-index: 1;
cursor: hand;
}
.overlay {
background: transparent url(Overlay/images/overlay.png) repeat top left;
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
z-index: 100;
}
.box {
position: fixed;
top: -500px;
left: 20%;
width: 610px;
background-color: #fff;
color: #7F7F7F;
padding: 20px;
border: 2px solid #F79510;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
-moz-box-shadow: 0 1px 5px #333;
-webkit-box-shadow: 0 1px 5px #333;
z-index: 101;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a id="activator"><img src="images/Film-2.png" class="film"></a>
<!-- I want to add the text here, separate to the image, but to do the same activation. -->
答案 0 :(得分:1)
您需要在原始“激活器”中添加文本,或者创建另一个文本。
试试这个:
<a id="activator"><img src="images/Film-2.png" class="film"></a>
<div id="activator2"> Some text that activates the overlay </div>
在你的JS改变中
$('#activator').click(...
要:
$('#activator, #activator2').click(...
现在,两个激活器都会触发使脚本显示的脚本。
另外,在你的CSS中,你的HTML a.activator
为id="activator"
,但这可能只是一个错字。