- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个 jQuery slider ,基本上,我通过将当前内存类添加到我的 memory2container 的每个子项来显示 slider 所显示的内容。
问题是当我到达最后一个 slider 而不是返回到第一个 slider 并重新开始时,它就会停止工作。
您可以在此处查看我为此使用的简单代码:
$('.amsheart').click(function() {
var cm = $('.memories2container').children('.currentmemory:first');
var nm = cm.nextAll('.memory:first');
if(cm.is('.memories2container:last-child')){
nm = $('.memories2container').children('.currentmemory:first');
cm.removeClass('currentmemory');
nm.addClass('currentmemory');
}
else{
cm.removeClass('currentmemory');
nm.addClass('currentmemory');
}
});
.amsheart{position:relative; transform: rotate(-5deg);}
.amsterdam{position:absolute; left:851px; top:37px;}
.memory{display:none;}
.currentmemory{display:block;}
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 3s;
animation-name: fade;
animation-duration: 3s;
}
@-webkit-keyframes fade {
from {opacity: .1}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .1}
to {opacity: 1}
}
.fadeout{opacity:1.0; transition: opacity 2s;}
.fadeout:hover{opacity:0.0; transition:opacity 2s; }
<div class="memories2container" style="width:550px; height:600px; position:absolute; right:50px; top:100px; transform:rotate(1deg);">
<div class="memory currentmemory fade" style="width:100%; height:100%; position:absolute; top:0px; left:0px; ">
<div class="first fadeout" style="background-image: url('images/20170520_115819.jpg');"><div class="pin1"></div><div class="pin2"></div><div class="pin3"></div><div class="pin4"></div></div>
<div class="second" style="background-image: url('images/20170520_115845.jpg');"><div class="pin1"></div><div class="pin2"></div><div class="pin3"></div><div class="pin4"></div></div>
<p style="transform:rotate(1deg); position:absolute; top:315px; left:40px; width:500px; height:auto; margin:auto; margin-top:15px; font-family: 'Covered By Your Grace', cursive; font-weight:600; font-size:23px;">37, esta fue nuestra acojedora "casita" durante 3 dias en Amsterdam, aunque parece pequeñita dentro habia espacio de sobra!</p>
<p style="position:absolute; top:415px; left:150px; transform:rotate(1deg); font-size:22px; font-weight:600;">y nuestros vecinos eran adorables XD</p>
</div>
<div class="memory fade" style="width:100%; height:100%; position:absolute; top:0px; left:0px; ">
<div class="first fadeout" style="background-image: url('images/20170522_124602.jpg');"><div class="pin1"></div><div class="pin2"></div><div class="pin3"></div><div class="pin4"></div></div>
<div class="second" style="background-image: url('images/20170522_112958.jpg');"><div class="pin1"></div><div class="pin2"></div><div class="pin3"></div><div class="pin4"></div></div>
<p style="transform:rotate(0.5deg); position:absolute; top:305px; left:38px; width:500px; height:auto; margin:auto; margin-top:15px; font-family: 'Covered By Your Grace', cursive; font-weight:600; font-size:23px;">Nuestro último dia en Lucky Lake, un lugar encantador! Mientras tu dabas los ultimos toques a tu perfecto ensayo en español yo me relajaba en la hamaca...</p>
<p style="position:absolute; top:435px; left:154px; transform:rotate(-2deg); font-size:22px; font-weight:600;">todos deberian tener derecho a una hamaca!</p>
</div>
<div class="memory fade" style="width:100%; height:100%; position:absolute; top:0px; left:0px; ">
<div class="first" style="background-image: url('images/20170521_030407.jpg');"><div class="pin1"></div><div class="pin2"></div><div class="pin3"></div><div class="pin4"></div></div>
<p style="transform:rotate(0.5deg); position:absolute; top:315px; left:26px; width:500px; height:auto; margin:auto; margin-top:15px; font-family: 'Covered By Your Grace', cursive; font-weight:600; font-size:23px;">Calentando nuestra cena en la calidez de nuestra caravana tras un largo dia visitando la hermosa ciudad...</p>
<p style="position:absolute; top:422px; left:140px; transform:rotate(1deg); font-size:22px; font-weight:600;">no es un Subway pero it's okeeyy !</p>
</div>
<div class="memory fade" style="width:100%; height:100%; position:absolute; top:0px; left:0px; ">
<div class="first fadeout" style="background-image: url('images/20170520_121454.jpg');"><div class="pin1"></div><div class="pin2"></div><div class="pin3"></div><div class="pin4"></div></div>
<div class="second" style="background-image: url('images/patitos.gif');"><div class="pin1"></div><div class="pin2"></div><div class="pin3"></div><div class="pin4"></div></div>
<p style="transform:rotate(0.5deg); position:absolute; top:315px; left:26px; width:500px; height:auto; margin:auto; margin-top:15px; font-family: 'Covered By Your Grace', cursive; font-weight:600; font-size:23px;">Nuestros vecinos nos acompañan en el desayuno?! son una familia entera de patitos muy monos</p>
<p style="position:absolute; top:422px; left:140px; transform:rotate(1deg); font-size:22px; font-weight:600;">ellos son otro tipo de churris con plumas !</p>
</div>
</div>
<div class="amsterdam">
<span>I</span>
<img class="amsheart" src="images/heart3.png">
<span>AMSTERDAM</span>
</div>
最佳答案
"Problem is when I reach the last slider instead of going back to the first slider and starting over it stops working."
您无法继续从最后一个位置移动到第一个位置的原因是因为您需要增量跟踪。使用 .nextAll
并引用 first-child
和 last-child
而没有真正了解第一个和最后一个之间的确切含义会让你陷入困境因为这些引用是从整个 NodeList 或数组的 Angular 来看的。您需要来自事件元素的索引位置的引用点。如果没有这个,你就没有停止点,如果没有停止点,像 .nextAll()
和 children
这样的方法将继续,最终找不到任何东西,然后失败。
确定应用的哪一部分真正“驱动”整个过程并增加计数。您所需要的只是声明一个值为 0 的变量,然后在每次迭代(循环)或在您的情况下单击按钮时递增它。
var idx = 0;
$('button').on('click', function() {
idx++;
...the rest of the code...
});
接下来,通过确定正在计数和/或遍历的元素总量来确定循环的限制。 99% 的情况下它是一个集合,特别是数组、NodeList、HTMLCollection 或对象文字(甚至是字符串)。很可能,这可以通过 .length
属性轻松完成。通过实现限制,您将确定周期结束和开始的时间和地点。通过比较当前计数和涉及的元素总数(总数为 -1 来抵消 0 计数)来做到这一点
var idx = 0;
$('button').on('click', function() {
idx++;
if (idx > (array.length -1)) {
idx = 0;
}
...the rest of the code...
});
<小时/>
引用资料位于演示下方
详细信息在演示中评论
// Same as $(document).ready(function() {...
$(function() {
// Reference main#frame as jQObj
var frm = $('#frame');
// Declare the base url to the images location
var base = "https://i.imgur.com/";
/* Declare an array of strings; Each string is an
|| image fileName and extension
*/
var path = ['6qGdA1e.jpg', 'iBug1U8.jpg', 'EK7A1RX.jpg', 'exivDl4.jpg', 'qQxmYLj.jpg', 'zHvmZz3.jpg', 'rmx1Y0y.jpg', 'XAYwLxo.jpg', 'TQviM2Y.jpg', 'KrKOLmh.jpg'];
//Get a count/Set a count
var qty = path.length;
var cnt = 0;
// Run the array thru `map()`
path.map(function(img, idx, path) {
/* This string is written as a Template Literal
|| ${var} is an interpolated variable
|| Refer to posted reference for details
*/
var img = `<div class='image'><img src='${base}${path[idx]}' style='object-fit:contain' width='100%' height='100%'></div>`;
/* After that, insert img into main#frame
|| Unlike innerHTML, insertAdjacentHTML()
|| does not overwrite old content.
*/
frm[0].insertAdjacentHTML('beforeend', img);
return img;
});
// Set the first image with the .active class
$('.image').first().addClass('active');
function movePaths(e) {
// Increment cnt
cnt++;
// if cnt is more than 6...
if (cnt > qty - 1) {
// Reset cnt;
cnt = 0;
}
// Get all div.image and remove .active class
$('.image').removeClass('active');
/* Get the div.image at the position
|| within the $('.image') object that matches
|| the number cnt currently in and add
|| .active class to it
*/
$('.image').eq(cnt).addClass('active');
}
/* Delegate the click event to button.heart
|| callback is movePaths()
*/
$('.heart').on('click', movePaths);
});
/* Set H/W 100/100% so that the rest of your
|| layout has a reference when using relative
|| measurements like `%`
*/
html,
body {
height: 100%;
width: 100%;
font: 400 16px/1.5 "Palatino Linotype"
}
/* In general, a parent element should have
|| position:relative
|| The children elements should have
|| position:absolute
*/
#frame {
position: relative;
background: rgba(0, 0, 0, 0);
display: flex;
overflow: hidden;
width: 96%;
height: 75vh;
}
/* Using display:table allows the container size to
|| conform to its contents
*/
.image {
position: absolute;
width: 100%;
height: 100%;
max-height: 0;
opacity: 0;
display: table;
}
/* A .class repeat selector is a valid and safe
|| way to boost specificity. For details see references.
*/
.active.active {
opacity: 1;
height: 75vh;
max-height: 600px;
top: 0;
bottom: 0;
z-index: 222;
animation: IN;
transition: all 1s ease-in;
}
.heart {
border: 0 none transparent;
background: rgba(0, 0, 0, 0);
outline: 0 none transparent;
cursor: pointer
}
.heart::after {
content: '💖';
font-size: 32px
}
@keyframes IN {
0 {
opacity: 0;
height: 0;
transform: translateX(0)
},
33% {
opacity: .33;
height: 33%;
transform: translateX(9vh)
},
66% {
opacity: .66;
height: 66%;
transform: translateX(18vh)
},
100% {
opacity: 1;
height: 100%;
transform: translateX(27vh)
}
}
-
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1, user-scalable=no">
<title></title>
<style>
</style>
</head><!-- This end tag is always before...
...the beginning of the body tag-->
<body>
<main id='frame'>
</main>
<nav class="control">
<label for='heart'>I</label>
<button class="heart" type='button'></button>
<label for='heart'>HAMSTER 🐹 HAM 🐷</label>
</nav>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.1/jquery.min.js"></script>
</body><!--body end tags are the second to the last
Remember a document can only have one <head> tag and one <body> tag.-->
</html>
关于javascript - 检查 jQuery slider 的最后一个子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47491145/
我正在尝试将 margin-left:20px 分配给表单内的所有 div,其类包含编辑,具有以下内容: form.edit > div { margin-left:20px; } 我的想法
我有这个 xpath: .//*[@id='some_id']/td//div 现在我想选择特定类型的 div 的任何子项,例如每个子项是标签或跨度。像这样的东西 .//*[@id='some_id'
我有一个包含包含用户信息的键列表的键,现在当我的表单加载时,我想将这些键作为数组获取。我该怎么做?我找到了获取计数的方法,但仍然不知道如何获取这些 key 。 最佳答案 您可以使用 Microsoft
关闭。这个问题需要更多 focused 。它目前不接受答案。 想要改进这个问题?更新问题,使其只关注 editing this post 的一个问题。 关闭 6 年前。 Improve this q
我正在通过一些在线教程来学习 AEM。根据教程,创建组件时,需要在 Allowed Parents 或 Allowed Children 中输入一些值。但是,我在窗口中看不到这样的选项。当我尝试创建组
我需要将 MDI 子窗体的创建集中到 Delphi (VCL) 中的一个独特过程中。这个想法是每次创建 MDI 子窗体时执行一些操作,无论其类型如何,即将其标题名称添加到列表中以访问该 MDI 子窗体
我试图在 TreeView 中获取所选节点的所有子节点,但遇到了一些问题。 以这个 TreeView 为例: 我想将所有子节点变为黄色突出显示的“文件夹”节点,这将是旁边有一条蓝线的子节点。 这是我尝
我在最小化我所有的 MDIChildren 时遇到了麻烦,遇到了 MDIChild to minimize not activated properly 我最小化所有 child 的代码是: proc
我使用下面的代码通过单击系统关闭按钮来关闭 MDI 子窗体,它工作正常: procedure Tfrm_main.FormClose(Sender: TObject; var Action: TC
仅当我指定对象的完整路径时,我才能通过指定特定子键来查找 Firebase 对象。这是为什么? 这有效 ref.child(`users/${user.uid}/watchlist/${key}`)
每当我单击工具栏菜单时,它每次都会显示新表单。我想阻止它一次又一次地显示相同的表单。在给出的代码中,form2 一次又一次地显示。我想停止它,以便它显示一次。 喜欢: private void new
我想知道是否有一种方法可以通过遍历父节点的 vector 来获取子节点中的数据。我有一个我计划经常更改的 XML 文件,因此我想避免对属性名称进行硬编码。因此,我想在我的子节点中提取数据而不使用 pt
假设我有以下 YAML 文件: - key1: value # and so on... key99: value key100: subkey1: value # an
我不是代码天才,而是行动脚本爱好者。 你能帮我吗? 我有一个函数,根据选择的对象,该函数将事件监听器调用已经在舞台上的一组“子项目”(我想在单击时重新使用具有更改参数的子项目,而不是创建多个实例和代码
我需要一些帮助来查询分层数据。这是一个简单的表,其中 parent_id 引用 id 并且对于根条目可能为 null。 create table edition ( id
我尝试获得一个简单的 GEF 编辑器。我有一个 GraphicalEditorWithPalette 来创建我的示例模型。我有一个覆盖 createFigure 和 getModelChildren
我正在尝试搜索其中包含子项(文本区域)的表格单元格。我努力了td.children.value,td.childNodes.value,td.firstChild.value,td.lastChild
我有一个 mdi 父 form 并且我在运行时通过以下代码将我的其他 form 作为 mdi 子窗体打开: private void MenuItem_Click(object sender, Eve
我在 Activity 中加载了一个 GridView,其中存在 fragment 。 GridView 本身并不位于 Fragment 中。我通过 BaseAdapter 创建了一个客户适配器,一切
我在导航 Controller 中有两个 child (根 child 和第二个 child )。我通常先去找根 child ,然后再去找第二个 child 。这允许我使用导航 Controller
我是一名优秀的程序员,十分优秀!