- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这是我目前得到的:http://jsfiddle.net/bpgabrielli/vpfsnhmh/
目前,单击下面的文本链接(“First Seal”等)会使相应的文本/图像淡入。我想添加使用左右箭头转到下一张和上一张幻灯片的选项(也淡入淡出)。如果显示最后一张幻灯片并单击向右箭头,我希望它返回到第一张幻灯片,反之亦然。
欢迎对当前代码提出任何建议或批评。谢谢!
HTML:
<div id="fadebox">
<img class="fade_arrows" id="left_arrow" src="http://www.clker.com/cliparts/Z/n/k/Z/y/j/left-arrow-gray-hi.png" />
<div id="fadetxt">
<h2 class='opaque'>Californian Monk Seal</h2><p class='opaque'>Bacon ipsum dolor amet corned beef drumstick jowl boudin kevin rump bresaola pork belly pig.</p>
<h2>Leopard Seal</h2><p>Tri-tip hamburger pork belly landjaeger andouille tenderloin. Turkey biltong bacon, filet mignon meatball shankle frankfurter shoulder.</p>
<h2>New Zealand Fur Seals</h2><p>Ribeye pork belly pancetta hamburger, ham prosciutto pork loin flank beef chicken. Boudin t-bone turkey pastrami chuck. Biltong pork loin alcatra ham hock shank landjaeger.</p>
<h2>Canadian Baby Seal</h2><p>Jerky sausage strip steak bresaola, pork cow capicola. Pork chop pork boudin tri-tip, frankfurter short loin leberkas capicola kevin shank shoulder rump strip steak cupim jerky.</p>
</div>
<div id="fade">
<img class='opaque' src="http://i.telegraph.co.uk/multimedia/archive/01661/seal_1661793c.jpg" />
<img src="http://i.telegraph.co.uk/multimedia/archive/01212/seal_1212980c.jpg" />
<img src="http://images.nationalgeographic.com/wpf/media-live/photos/000/005/cache/fur-seal_531_600x450.jpg" />
<img src="http://myweb.tiscali.co.uk/ladycroft/seal2.jpg" />
</div>
<img class="fade_arrows" id="right_arrow" src="http://guidelinesandprinciples.org/assessment/upload/surveys/117344/images/arrow_right_grey.png" />
</div>
<p id="fade_controls">
<a class="hvr-glow-selected">First Seal</a>
<a>Second Seal</a>
<a>Third Seal</a>
<a>Fourth Seal</a>
</p>
Javascript:
$(document).ready(function() {
$("#fade_controls").on('click', 'a', function() {
$("#fade img").removeClass("opaque");
var newImage = $(this).index();
$("#fade img").eq(newImage).addClass("opaque");
$("#fadetxt h2").removeClass("opaque");
var newText = $(this).index();
$("#fadetxt h2").eq(newText).addClass("opaque");
$("#fadetxt p").removeClass("opaque");
var newText = $(this).index();
$("#fadetxt p").eq(newText).addClass("opaque");
$("#fade_controls a").removeClass("hvr-glow-selected");
$(this).addClass("hvr-glow-selected");
});
});
CSS:
#fadebox {
margin: 0 auto;
text-align:center;
z-index: 1;
}
img.fade_arrows {
width: 30px;
position: relative;
margin-bottom: 150px;
margin-right: 10px;
margin-left: 10px;
opacity: 0.3;
cursor: pointer;
}
img.fade_arrows:hover {
opacity: 0.6;
}
p#fade_controls {
text-align:center;
z-index: 1;
}
#fade_controls a {
/* margin: .4em;*/
padding: .7em;
cursor: pointer;
background: #e1e1e1;
text-decoration: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
color: #666;
width: 80px;
}
#fade_controls a.hvr-glow-selected {
background: none;
}
#fade_controls a.hvr-glow {
font-weight: 500;
display: inline-block;
vertical-align: middle;
-webkit-transform: translateZ(0);
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-moz-osx-font-smoothing: grayscale;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: background;
transition-property: background;
box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
}
#fade_controls a.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
background: none;
}
#fade {
position:relative;
height:340px;
width:500px;
margin:0 auto 10px;
display: inline-block;
}
#fade img {
position:absolute;
left:0;
-webkit-transition: opacity 0.5s ease-in-out;
-moz-transition: opacity 0.5s ease-in-out;
-o-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
opacity:0;
width:500px;
height:340px;
-webkit-box-shadow: 0px 1px 30px 0px rgba(176,176,176,1);
-moz-box-shadow: 0px 1px 30px 0px rgba(176,176,176,1);
box-shadow: 0px 1px 30px 0px rgba(176,176,176,1);
}
#fade img.opaque {
opacity:1;
width:500px;
height:340px;
-webkit-box-shadow: 0px 1px 30px 0px rgba(176,176,176,1);
-moz-box-shadow: 0px 1px 30px 0px rgba(176,176,176,1);
box-shadow: 0px 1px 30px 0px rgba(176,176,176,1);
}
#fadetxt {
position:relative;
height:340px;
width:300px;
margin:0 15px 0 0;
display: inline-block;
}
#fadetxt h2 {
position:absolute;
left:0;
-webkit-transition: opacity 0.5s ease-in-out;
-moz-transition: opacity 0.5s ease-in-out;
-o-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
opacity:0;
font-size: 28px;
font-weight: 300;
color: #333;
text-align:left;
}
#fadetxt h2.opaque {
opacity:1;
font-size: 28px;
font-weight: 300;
color: #333;
text-align:left;
}
#fadetxt p {
position:absolute;
left:0;
-webkit-transition: opacity 0.5s ease-in-out;
-moz-transition: opacity 0.5s ease-in-out;
-o-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
opacity:0;
padding-top: 40px;
text-align:left;
font-size: 16px;
}
#fadetxt p.opaque {
opacity:1;
paddin-top: 40px;
text-align:left;
font-size: 16px;
}
最佳答案
$(document).ready(function() {
var count = $(".slides").length;
$(".slides").click(function(){
$(this).fadeOut("fast").removeClass("active");
$(this).next().fadeIn("slow").addClass("active");
if($(".slides:last")){
$(".slides:first").fadeIn("slow").addClass("active");
}
});
});
如果您有最后一个子项,则可以通过检查幻灯片的最后一个子项来实现,然后在单击箭头时显示第一个子项。获取幻灯片的长度,如果长度更大,则将显示幻灯片的第一个 child 。
关于javascript - 如何向我的 jQuery 图像和文本 slider 添加左/右箭头(下一个/上一个)功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28046333/
我想知道最终用户按下了什么,所以我使用了 getch() 。 如果用户按右,我可以获得0xE0 0x4D。 如果用户按下Ctrl+右,我可以获得0xE0 0x47。 如果用户按下Shift+右,我可以
我已经构建了一个应用程序来搜索我的位置。 这是代码 var map; var gdir; var geocoder = null; var addressMarker; function init
我想为我的元素设计布局 View 。布局 View 在左 Angular 和右 Angular (同一行)有一个图像,将有 2 行单词,一行在第 1 行,另一行在第 2 行。我该如何实现? It
我有一个很长的线性(分支不多)流程图,在 graphviz 中显示为要么太高而无法放在单个页面上,要么太宽(如果方向是从左到右) 是否有一种简单的方法可以让 graphviz 以从左到右,然后向下,然
我一直摸不着头脑,但运气不好。设计器有一个包含 3 栏的站点、两个侧边栏和一个主要内容区域。 专为桌面设计,左栏、主要内容、右栏。但是,在较小的设备上,我们希望首先堆叠主要内容。 所以通常情况下,你可
我想要从上到下和从左到右组织的 css block 。 为了更好地解释这是一张图片,其中包含我到目前为止所获得的内容以及我希望使用 CSS 实现的内容: 代码如下: HTML: 1 2 3 4 5
当我问this question时,答案之一(现已删除)建议Either类型对应Curry-Howard correspondence中的XOR而不是OR,因为它不能同时是Left和Right。 真相
如果一行中六个观察值中至少有三个是 != NA,我想计算该行的平均值。如果存在四个或更多 NA,则平均值应显示为 NA。 给出平均值的例子,忽略了 NA: require(dplyr) a % mut
我有一个由 9 列组成的数据框,其中包含一个因素 list 。每行可以填充所有 9 列(因为在该行中包含 9 个“事物”),但大多数没有(大多数有 3-4 个)。列也不是特定的,就像第 1 列和第 3
这是我第一次尝试使用 R 构建函数。基本上我的预期目标如下。 使用 RoogleVision 包与 Google Cloud Vision API 通信 函数遍历目录中的图片 从每张图片的 Googl
使用: mean (x, trim=0.05) 从分布的每一侧移除 2.5%,这对于对称的双尾数据来说很好。但是如果我有一个尾部或高度不对称的数据,我希望能够只删除分布的一侧。有没有这个功能,还是我自
我想保留重复的列,并删除唯一的列。这些列将具有相同的值,但名称不同。 x1 = rnorm(1:10) x2 = rnorm(1:10) x3 = x1 x4 = rnorm(1:10) x5 = x
是否可以使WPF工具栏中的元素的Right水平对齐方式正确? 我尝试将内部元素添加到Grid中,并将ColumnDefinition分配给Left / Right。我
datatable(head(iris)) 如何将我的列居中,使其位于我的列名称的正下方? 最佳答案 您可以使用options 下的columnDefs 自变量。将 className 设置为 dt-
我是 R 的新手,但我正在尝试在 R 中制作滑动窗口。 使用循环我可以像这样,但这变得非常低效。 results=c(1:7) letters=c("A","B","C","D","E","F","G
假设我有这个 .txt 文件: here is line 1 here is line 2 here is line 3 here is line 4 我想将此字符串粘贴到第 3 行和第 4 行之间:
假设我有这个 .txt 文件: here is line 1 here is line 2 here is line 3 here is line 4 我想将此字符串粘贴到第 3 行和第 4 行之间:
我想知道我的环境中有什么类型的对象。 我可以像这样显示谁在那里: ls() 但是运行类似的东西 sapply(ls(), class) (显然)不会告诉我们我们拥有什么类型(类)的对象(函数、数字、因
我想创建一个带有水平标签的树状图,但让叶子根据它们的高度悬挂,而不是仅仅下降到图的边缘。 例子: par(mfrow = c(1,2)) hc <- hclust(dist(USArrests), "
我的 CSS 中有一个元素,如下所示 .xyz{ position:absolute; left:50%; } 现在正如预期的那样,当我减小浏览器窗口的宽度时,这个元素向左移动
我是一名优秀的程序员,十分优秀!