js动态切换图片的方法_javascript技巧
程序员文章站
2022-05-08 13:26:00
...
本文实例讲述了js动态切换图片的方法。分享给大家供大家参考。具体实现方法如下:
js,css动态切换图片
index.css文件如下:
复制代码 代码如下:
* {
margin: 0px;padding: 0px;
}
body {
width: 632px;
/*background-color: blue;*/
margin: 0 auto;
}
#imgsCom {
background-color: yellow;
/*相对定位,为了下层可以使用绝对定位时以本div的原点为原点*/
position: relative;
}
#ulnav{
list-style-type: none;
position: absolute;
/*使用以imgsCom为原点来绝对定位到右下角*/
bottom: 0px;
right: 0px;
}
#ulnav li{
list-style-type: none;
float: left;
background-color: black;
color: white;
margin-right: 5px;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
cursor: pointer;
}
margin: 0px;padding: 0px;
}
body {
width: 632px;
/*background-color: blue;*/
margin: 0 auto;
}
#imgsCom {
background-color: yellow;
/*相对定位,为了下层可以使用绝对定位时以本div的原点为原点*/
position: relative;
}
#ulnav{
list-style-type: none;
position: absolute;
/*使用以imgsCom为原点来绝对定位到右下角*/
bottom: 0px;
right: 0px;
}
#ulnav li{
list-style-type: none;
float: left;
background-color: black;
color: white;
margin-right: 5px;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
cursor: pointer;
}
index.html如下:
复制代码 代码如下:
希望本文所述对大家的javascript程序设计有所帮助。
推荐阅读
-
javascript动态改变img的src属性图片不显示的解决方法
-
JS中通过url动态获取图片大小的方法小结(两种方法)
-
JS动态图片的实现方法完整示例
-
Js数组的操作push,pop,shift,unshift等方法详细介绍_javascript技巧
-
JS中动态添加事件(绑定事件)的代码_javascript技巧
-
JS获取并操作iframe中元素的方法_javascript技巧
-
JavaScript 动态生成方法的例子_javascript技巧
-
js 获取屏幕各种宽高的方法(浏览器兼容)_javascript技巧
-
浏览器解析js生成的html出现样式问题的解决方法_javascript技巧
-
IE中JS跳转丢失referrer问题的2个解决方法_javascript技巧