我希望我的图像精灵根据用户所在的页面显示我在图像文件中的另一个子图像。我可以在 javascript 中识别页面并正确显示我的 css sprite,当前在无序列表中的 li 标签内,其中也包括锚标签。
这是我的css的一个例子
<style type="text/css">
#theList{position:relative;}
#theList li{margin:0;padding:0;list-style:none;position:absolute;}
#theList li, #navlist a{height:40px;display:block;}
#one{left:-10px;top:-55px;width:200px;}
#one{background:url('../../images/dashboardNavigationMasterSprite.jpg') 0px 0px;}
#one a:hover{background: url('../../images/dashboardNavigationMasterSprite.jpg') 0px -40px;}
#two{left:193px;top:-55px;width:200px;}
#two{background:url('../../images/dashboardNavigationMasterSprite.jpg') -202px 0px;}
#two a:hover{background: url('../../images/dashboardNavigationMasterSprite.jpg') -202px -40px;}
</style>
这是我的html
<ul id="theList">
<li id="one"><a href="http://bert2007sql64/sites/budgettool/FIDs/Pages/Dashboards/Dashboard_Exec_Home.aspx"></a></li>
<li id="two"><a href="http://bert2007sql64/sites/budgettool/FIDs/Pages/Dashboards/Dashboard_Budget_Controls.aspx"></a></li>
基本上我想知道的是如何使用 javascript 或 jquery 访问和更改 xpos 和 ypos 属性。我试图操纵的 xpos 和 ypos 值是下面一行中列出的值
#one{background:url('../../images/dashboardNavigationMasterSprite.jpg') 0px 0px;}
非常感谢,