我有一个代码示例,用于手风琴
就在这儿
问题是,
我想将 Lorem/Ipsum 更改为图像。
所以它就像打开关闭按钮,
点击 image1,手风琴打开 + image1 变成 image2。
image2 点击,手风琴关闭 + image2 变成 image1
我已经通过它做了一些修改。
CSS
.accordionButton a{
display: inline-block;
position: absolute;
width: 44px;
height: 44px;
background:url(image1.png) 0 0 no-repeat;
text-indent: -9999px;
cursor:pointer;
}
.on{
background:url(image2.png) 0 0 no-repeat;
float: left;
cursor:pointer;
}
.over{
background:url(image1.png) 0 0 no-repeat;
float: left;
cursor:pointer;
}
有人可以帮忙吗?
谢谢...