我正在使用一个简单的jquery幻灯片,并希望添加一个简单的jscript翻转,因为我不想搞乱CSS。它会正确翻转,但是当您单击它时,假设要拉出的图像会出现在缩略图图像后面。但是当你刷新屏幕时它表现正常。这是没有翻转的页面,但您可以看到缩略图如何正确地提取图像:
http://olbrichdesigns.com/cg_test
在这里,当我将简单的行jscript添加到图像以进行翻转:
http://olbrichdesigns.com/cg_test/index3.html
这是简单的javascript行。
<a href="#2" class="link"><img src="images/spg_puzzle1.jpg" width="221" height="205" alt="" name="puzzle1" onmouseover="this.src='images/spg_puzzle1_hov.jpg'" onmouseout="this.src='images/spg_puzzle1.jpg'"></a>
不确定还要添加什么,这样您就可以在不发布大量代码的情况下看到。我想如果你有相关知识,可以查看页面的页面来源。
全部谢谢!