- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
不幸的是,我是编程新手,因此为了帮助我,我一直在 youtube 上学习一些简单的教程(除了学习 Treehouse 类(class)之外)。我一直在努力解决并且似乎无法找到解决方案的一个问题是构建一个简单的灯箱,并通过单击事件来调出灯箱。我已经检查了所有行、语法,是否省略了 ;或 {},以为我的 javascript src 不正确,尝试下载,创建一个 js 文件夹并链接到该文件夹,引用谷歌托管的 javascript,检查 firebug,尝试不同的浏览器,检查 CSS 是否正确(这似乎是当将显示设置为阻止时,它显示正常),认为可能有更新的语法规则(尝试使用 jQuery 而不是 $,但只是看不到我在哪里犯了错误。可能我遗漏了一些非常简单的东西,所以请原谅我我关注的 YouTube 链接是: https://www.youtube.com/watch?v=k-uonF7Gdgw 还检查了视频的评论,看看其他人是否也遇到同样的问题,有些是,但大多数其他人似乎都很好,并且没有为那些没有发布的解决方案让它发挥作用!
请看下面的代码:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.lightbox').click(function(){
jQuery('.backdrop, .box').animate({'opacity':'.50'}, 300, 'linear'); //fades in the backdrop and the lightbox - speed of 300, and displayed in a linear fashion. Only want the backdrop displayed with 50% opacity, and the box at 100% (see below line)
jQuery('.box').animate({'opacity':'1.00'}, 300, 'linear');
jQuery('.backdrop, .box').css('dispaly', 'block'); //sets the appearance of the box
});
});
</script>
提前非常感谢,感谢您提供宝贵的资源!尼克
最佳答案
Lightbox 是一种 JavaScript 技术,用于使用模式对话框显示图像和其他 Web 内容,其中图像显示在中心,填充大部分屏幕,而窗口的其余部分则变暗。 Lightbox 最初是一个特定 JavaScript 插件的名称。然而,该术语的常见用法已经演变为涵盖灯箱式 JavaScript 插件和一般效果。
首先我们拍摄一些图像(当我们单击图像时,将显示 LightBox)。我们将此图像放置在
HTML 代码:
<section id="examples" class="examples-section">
<div class="container">
<h3 style="clear: both;">Four image set</h3>
<div class="image-row">
<div class="image-set">
<a class="example-image-link" href="img/demopage/image-3.jpg" data-lightbox="example-set" data-title="Click the right half of the image to move forward."><img class="example-image" src="img/demopage/thumb-3.jpg" alt=""/></a>
<a class="example-image-link" href="img/demopage/image-4.jpg" data-lightbox="example-set" data-title="Or press the right arrow on your keyboard."><img class="example-image" src="img/demopage/thumb-4.jpg" alt="" /></a>
<a class="example-image-link" href="img/demopage/image-5.jpg" data-lightbox="example-set" data-title="The next image in the set is preloaded as you're viewing."><img class="example-image" src="img/demopage/thumb-5.jpg" alt="" /></a>
<a class="example-image-link" href="img/demopage/image-6.jpg" data-lightbox="example-set" data-title="Click anywhere outside the image or the X to the right to close."><img class="example-image" src="img/demopage/thumb-6.jpg" alt="" /></a>
</div>
</div>
</div>
</section>
现在添加屏幕和灯箱的 CSS 代码文件。另请下载 lightbox.js 和 jquery 库 java 脚本文件。
关于一个简单的灯箱的 javascript 似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24415637/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!