我的投资组合部分有两个问题,它不像我想要的那样顺利。他们来了:
我希望我的项目改变背景颜色并在悬停在它们上方时显示一个小加号。同时我想添加一个“过渡:所有 0.5 秒缓入出局;” 但结果不是我所期望的。这可能是因为我的“加号”应该位于另一个 div 中,但我不知道如何使它工作。相反,我把它放在这里:
.projectshot a .over:hover{ position: absolute; background: url(http://www.iconsea.com/uploadimage/smallsort/4015/4dxtdhpaxqw.png) center center no-repeat rgba(51, 51, 51, 0.6); border-radius: 8px; height: 150px; width: 200px; margin: 10px; }
这是我想要达到的效果:http: //bjorsberg.se/
困扰我的第二个问题是,如果你仔细观察,当你用鼠标接近每个项目时,鼠标指针开始“跳舞”并且表现得很疯狂???我该如何解决?
这是我的 JSFiddle:
.plus{
width: 100px;
height: 100px;
position: absolute;
left: 50%;
top: 50%;
margin: -49px 0 0 -56px;
background: url(img/plus.png) center center no-repeat;
}
我对网页设计很陌生(自从我开始学习 4 个月以来),我显然不擅长将 div 定位在另一个 div 中的 div 内......所以,如果你看到我创建的任何问题,请随时纠正我的小提琴。谢谢!