我正在尝试在为网站创建的启动页面上制作一些滚动效果。我想使用 CSS3 拥有多个背景的能力和 :pseudo 类来实现这一点。
这是我的尝试;但是,他不会在 Dreamweaver 或 Chrome 中显示。
#1 {
width: 143px;
height: 142px;
background: url(../assets/Home/1a.jpg) top 0px no-repeat;
background: url(../assets/Home/1b.jpg) top -143px no-repeat;
display: inline-block;
}
#1:hover {
background: url(../assets/Home/1a.jpg) top -143px no-repeat;
background: url(../assets/Home/1b.jpg) top 0px no-repeat;
}
关于如何改进这一点的任何想法或替代路线的建议以实现我的目标?