我试图创建这个功能已有几天, 没有100%的工作结果 。 我想为我的网站做5个固定的图像滚动( 用于导航菜单) 。 我一定已经读过十多个教程了。 有些建议我使用js, 另一些建议cs. 所有建议都产生了问题。 最普遍的问题是, 当我用 cs 进行功能的图像滚动, 并将其定位时, 它不会在调整浏览器窗口时, 将其位置与其它图像( 具有“ 粘贴到背景” 效果) 的比例化 。 基本上, 我希望所有图像( 包括滚动) 都具有“ 粘贴到背景” 效果 。
在壁炉中,滚动效果只有在鼠标悬浮在图像的顶部25%上方,而“附在背景”效果不起作用时才有效。在染色体中,环绕滚动图像效果很好,但“附在背景”效果也行不通。这里的代码是:
#news {
position:relative;
left:180px;
bottom:450px;
width:210px;
height:67px;
}
<div id="news" align="center">
<a href="news.html"
onmouseover="document.news.src= newsRO.png "
onmouseout="document.news.src= news.png ">
<img src="news.png" name="news" width="210px" height="67"/>
</a>
</div>
here s a link to a live example: http://www.scissormanmusic.com/index_new2.html there s clearly a lot of positioning & content development i still need to do with some of the other elements on the site. but i should be able to get them in the right places once i can get the menu to function properly...i think
感谢诸位的洞察力。 谢谢!