Chiller arrows.
This commit is contained in:
parent
206c7305b3
commit
e5f9ec18ea
@ -6,11 +6,11 @@ body {
|
|||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: #88EE44;
|
color: #84AAC2;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #DDDDDD;
|
color: #FFAD27;
|
||||||
}
|
}
|
||||||
#title {
|
#title {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -59,16 +59,19 @@ a:hover {
|
|||||||
#next, #back {
|
#next, #back {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: auto;
|
width: auto;
|
||||||
font-size: 2.5em;
|
font-size: 4.5em;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
top: 40%;
|
top: 40%;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
opacity: 0.35;
|
||||||
|
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=35)";
|
||||||
|
filter: alpha(opacity=35);
|
||||||
}
|
}
|
||||||
#back {
|
#back {
|
||||||
left: .5em;
|
left: 0.1em;
|
||||||
}
|
}
|
||||||
#next {
|
#next {
|
||||||
right: .5em;
|
right: 0.1em;
|
||||||
}
|
}
|
||||||
#photo {
|
#photo {
|
||||||
border: 0;
|
border: 0;
|
||||||
|
@ -26,8 +26,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a id="back">←</a>
|
<a id="back">‹</a>
|
||||||
<a id="next">→</a>
|
<a id="next">›</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="error">Forgot my camera.</div>
|
<div id="error">Forgot my camera.</div>
|
||||||
|
@ -300,6 +300,12 @@ $(document).ready(function() {
|
|||||||
$("#photo-box").mouseleave(function() {
|
$("#photo-box").mouseleave(function() {
|
||||||
$("#photo-links").stop().fadeOut("slow");
|
$("#photo-links").stop().fadeOut("slow");
|
||||||
});
|
});
|
||||||
|
$("#next, #back").mouseenter(function() {
|
||||||
|
$(this).fadeTo("slow", 1);
|
||||||
|
});
|
||||||
|
$("#next, #back").mouseleave(function() {
|
||||||
|
$(this).fadeTo("slow", 0.35);
|
||||||
|
});
|
||||||
$("#metadata-link").click(function() {
|
$("#metadata-link").click(function() {
|
||||||
if (!$("#metadata").is(":visible"))
|
if (!$("#metadata").is(":visible"))
|
||||||
$("#metadata").stop()
|
$("#metadata").stop()
|
||||||
|
Loading…
Reference in New Issue
Block a user