您如何编写符合SASS的规范?
.fader { display: inline-block; }
.fader img:last-child {
position: absolute;
top: 0;
left: 0;
display: none;
}
基本上,我只是在一个图像上复制此淡入淡出的示例,在另一个图像上找到(在此处找到)。
他的JFiddle示例:http : //jsfiddle.net/Xm2Be/3/
但是,他的示例是简单的CSS,我正在SASS中从事一个项目,并且不确定如何正确翻译它。
我的密码
请注意,在下面的示例中,img悬停功能无法正常工作(两个图像均显示,并且没有发生滚动淡入操作)
我的CodePen: http ://codepen.io/leongaban/pen/xnjso
我试过了
.try-me img:last-child & .tryme img:last-of-type
但是:会引发SASS编译错误,下面的代码有效
.try-me img last-of-type {
position: absolute;
top: 0;
left: 0;
display: none;
}
但是它吐出的CSS并没有帮助我:
.container .home-content .try-me img last-of-type {
position: absolute;
top: 0;
left: 0;
display: none;
}
嘿,为什么不只使用CSS?您可以删除所有JS,我的意思是悬停功能可以支持到ie6。我猜您知道平板电脑上没有悬停事件。
我的意思是您将需要为图像设置一个区域。但是我发现它使用了全部,特别是如果您想要href的话。
http://codepen.io/Ne-Ne/pen/xlbck
只是我的想法