- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我完全迷失了。当您将鼠标悬停在各自的图像上时,我试图在视口(viewport)中心显示我的每个元素的标题。我通过 jQuery 执行此操作,因为它似乎是最直接的方法,但如果有更简单的方法,那么我会洗耳恭听。
我尝试添加到 jQuery 以防止图像在悬停在类型上时返回完全不透明,并尝试为“元素显示名称”类的 css 找到某种透明度属性无济于事。
我觉得它是非常小的东西还是非常基本的东西,但我不确定是哪一个。有人有什么建议吗?
非常感谢任何帮助!
这是有问题页面的工作演示,http://staging.lukasyonis.com/projects/allprojects.html
$(document).ready(function() {
$('.project').ready(function() {
$(this).find('.project-display-name').hide();
});
$('.project').hover(function() {
$(this).find('.project-display-name').fadeIn(100);
}, function() {
$(this).find('.project-display-name').fadeOut(125);
});
$('.project-link').hover(function() {
$(this).data('title', $(this).attr('title')).removeAttr('title');
}, function() {
$(this).attr('title', $(this).data('title'));
});
});
#buttons {
z-index:11;
position:fixed;
float:left;
bottom:0;
margin-bottom:1.75em;
display:inline;
}
#buttons ul li {
list-style-type:none;
display:inline;
color: #000;
line-height:1.25em;
text-align:left;
float:left;
font-family: "apercuregular", "Helvetica Neue", Helvetica, sans-serif;
font-size:100%;
}
#buttons li#next {
float:right;
}
#buttons ul li a {
display:block;
}
#thumbnail {
margin-top:6.5em;
}
#thumbnail img {
margin-bottom:1%;
margin-left:3%;
width:97%;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#thumbnail img:last-of-type {
margin-bottom:0;
}
#copy #head {
font-family:"apercuregular", Helvetica, Arial;
line-height:1.25em;
}
#copy #sub {
font-family:"aperculight_italic", Helvetica, Arial;
line-height:1.25em;
}
#copy #bold {
font-family:"aperculight", Helvetica, Arial;
line-height:1.25em;
}
#copy {
position:fixed;
margin-top:6.5em;
font-family:"aperculight", Helvetica, Arial;
line-height:1.25em;
margin-left: 1.75em;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#project-container {
margin-top:6.5em;
}
#project01 img, #project02 img, #project03 img, #project04 img, #project05 img, #project06 img, #project07 img, #project08 img {
transition:opacity .3s ease;
opacity: 1;
}
#project01 img:hover, #project02 img:hover, #project03 img:hover, #project04 img:hover, #project05 img:hover, #project06 img:hover, #project07 img:hover, #project08 img:hover, .project-display-name:hover {
opacity: .3;
}
.project:hover .project-display-name {
opacity: 1;
}
.project-display-name {
position: fixed;
z-index: 10000000;
font-family: "fugueregular", Helvetica, Arial;
font-size:7em;
line-height: 1.125em;
text-align: center;
color: #000;
width: 90%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#project01 img {
z-index:100;
width:100%;
margin-bottom:3.75%;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#project02 img {
z-index:100;
width:100%;
margin-bottom:3.75%;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
-webkit-animation
}
#project03 img {
z-index:100;
width:100%;
margin-bottom:3.75%;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#project04 img {
z-index:100;
width:100%;
margin-bottom:3.75%;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#project05 img {
z-index:100;
width:100%;
margin-bottom:3.75%;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#project06 img {
z-index:100;
width:100%;
margin-bottom:3.75%;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#project07 img {
z-index:100;
width:100%;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#project08 img {
z-index:100;
width:100%;
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
#project09 img {
z-index:100;
width:100%;
}
#project10 img {
z-index:100;
width:100%;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
<div class="section d-show d-showgrid">
<header id="header" class="d-all box">
<span id="inner-head" class="d-all box">
<article id="logomark" class="d1 box">
<a href="../index.html"><img src="../images/LogoBlue_x2.svg" alt="logo" /></a>
</article>
<article id="menu" class="d10-d12 box">
<ul id="nav">
<li id="practice"><a href="../practice.html">profile</a></li>
<li id="past"><a href="allprojects.html">work</a></li>
</ul>
</article>
</span>
</header>
<article id="project-container" class="d-all box">
<article id="project01" class="d1-d6 box project">
<a class="project-link" href='2014/art-science.html' title='The Art & Science Series'>
<img src="../images/work/2014/art-science/Scene_02.jpg" alt="art-science" />
<figcaption class="project-display-name">
<p>forum studio:
<br />the art & science series</p>
</figcaption>
</a>
</article>
<article id="project02" class="d7-d12 box project">
<a class="project-link" href='2014/shadia-ghantous.html' title='Shadia Ghantous'>
<img src="../images/work/2014/shadia-ghantous/Scene_08.jpg" alt="shadia" />
<figcaption class="project-display-name">
<p>shadia ghantous</p>
</figcaption>
</a>
</article>
<article id="project03" class="d1-d6 box project">
<a class="project-link" href='2014/gojo.html' title='Gojo Contractors and Developers'>
<img src="../images/work/2014/gojo/Scene_04.jpg" alt="gojo" />
<figcaption class="project-display-name">
<p>gojo contractors and developers</p>
</figcaption>
</a>
</article>
<article id="project04" class="d7-d12 box project">
<a class="project-link" href='2013/arkitekt.html' title='Arkitekt 29'>
<img src="../images/work/2013/arkitekt/Scene_02a.jpg" alt="arkitekt" />
<figcaption class="project-display-name">
<p>arkitekt 29</p>
</figcaption>
</a>
</article>
<article id="project05" class="d1-d6 box project">
<a class="project-link" href='2012/mayday.html' title='May Day 2012'>
<img src="../images/work/2012/mayday/Scene_01.jpg" alt="mayday" />
<figcaption class="project-display-name">
<p>may day 2012</p>
</figcaption>
</a>
</article>
<article id="project06" class="d7-d12 box project">
<a class="project-link" href='2014/lukasyonis.html' title='Lukas Yonis'>
<img src="../images/work/2014/lukasyonis/Scene_11.jpg" alt="lukasyonis" />
<figcaption class="project-display-name">
<p>lukas yonis</p>
</figcaption>
</a>
</article>
<article id="project07" class="d1-d6 box project">
<a class="project-link" href='2012/eternals.html' title='The Eternals Espiritu Zombi Group at The Hideout'>
<img src="../images/work/2012/eternals/Scene_01.jpg" alt="eternals" />
<figcaption class="project-display-name">
<p>the eternals espiritu zombi group at the hideout</p>
</figcaption>
</a>
</article>
<article id="project08" class="d7-d12 box project">
<a class="project-link" href='2013/rarariot.html' title='Ra Ra Riot at Metro Chicago'>
<img src="../images/work/2013/rarariot/Scene_01.jpg" alt="rarariot" />
<figcaption class="project-display-name">
<p>ra ra riot at metro chicago</p>
</figcaption>
</a>
</article>
<article id="project09" class="d1-d6 box project">
</article>
</article>
最佳答案
不确定我是否理解你的问题,但尝试使用这个:
.project-display-name, .project-display-name p {
pointer-events: none;
}
关于jquery - 在图像顶部打字会干扰图像的悬停状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30205850/
我正在尝试向图像顶部和底部的 ImageView 添加渐变。我不想在 ImageView 之上添加 TextView 。我该如何实现? 最佳答案 看来您简单而干净的解决方案是用 FrameLayout
我可以寻求帮助吗, 我有日期 - “公司名称”和“日期”,例如 $value |"Comp Name"| "Date" | |:----------|----------:| |computer
我有两个表,我试图从中运行查询以返回每个人的最大(或最高)交易。我应该注意,我无法更改表结构。相反,我只能拉数据。 人 +-----------+| id | name |+-----------+|
所以我有一个用管道打开的 n 个流的数组,但是使用 gdb,我发现当我尝试关闭流或管道的写入端时程序失败。我可以很好地写入管道,但关闭它们不起作用。我在程序上运行 valgrind,它所做的只是打印出
大家好,这是我的难题。我正在尝试创建一个标签栏,该标签栏从上到下锚定在左侧,而不是从左到右锚定在底部。我创建了一个工具栏项目,将栏准确地放置在我想要的位置,但我希望选项卡栏相同,具有相同的功能,当然除
http://jsfiddle.net/GuXQZ/3/ header slideshow lates Content
我的图片出了点问题,我无法解决这个问题。这是我的代码.. HTML HIDE CSS #ads { -webkit-border-bottom-right-r
我有一个包含 3(css 网格)列的设计。第二列有嵌套的网格内容需要垂直滚动,而其他两列保持各自的高度。我给第二个嵌套列一个溢出,但我还需要给它一个顶部和底部填充或边距。我的解决方案没有顶部/底部填充
我在 View 中有两个 UIToolbar,分别在顶部和底部。我正在尝试在 iOS 版本中一致地应用外观。从 iOS5 开始有这个 setBackgroundImage: forToolbarPos
一个 div 我使用 top:-26px; 在 css 中设置高度。我有其他 div 其他地方我想与那个 div 对齐。我注意到在 jquery 中编写 .css('top') 得到了我的 css 而
我有这个无序列表 two three 有没有一种方法可以将无序列表添加到无序列表的前面,使其像这样结束? ONE two three 请注意“ONE”已添加到列表
我想检测鼠标何时离开顶部的视口(viewport)(可以说是向北)。我在网上搜了下How can I detect when the mouse leaves the window? .是一个好的开始
运行顶级命令top -c在 Ubuntu 服务器上显示当前正在运行的所有命令。关于 PostgreSQL 命令,括号中的值是什么意思?我说的是图片中红色框旁边的值。 最佳答案 我找不到任何文档来支持这
我想知道将顶部和底部边距添加到 GtkTextView 的正确且普遍接受的方法位于 GtkScrolledWindow 内.有设置左右边距的功能,我正在使用: gtk_text_view_set_le
作为很多“初学者”,我认为使用 TOP_OF_PIPELINE 作为 dst 和 BOTTOM_OF_PIPELINE 作为 src 意味着 ALL_COMMANDS 两者。 Here Nicol B
我正在尝试使用 jQuery/Javascript 解决这个问题: 当浏览器向下滚动且窗口底部到达页脚 DIV 顶部时,执行 CSS 代码更改。 问题示例: https://elodywedding.
我想使用范围 slider 来选择一个值并将该值呈现在 Angular 中的范围选择器顶部。我的html代码是: Raio: {{raio}} metros 在我的 co
我想将手的图片放在靠近脸部的黑色 Canvas 上。这可以吗?有没有办法确定图片的位置? 这是我的代码: var canvas; var canvasContext; window
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我是一名优秀的程序员,十分优秀!