本文目录一览:
网页背景图片设置的代码是什么呢
代码为: {background-image: url(URL)|none}
1,背景颜色 {background-color:数值}。
2,背景重复 {background-repeat:inherit|no-repeat|repeat|repeat-x|repeat-y}。
3,背景固定 {background-attachment:fixed|scroll}。
4,背景定位 {background-position:数值|top|bottom|left|right|center}。
5,背影样式 {background:背景颜色|背景图象|背景重复|背景附件|背景位置}。
拓展资料
1、所谓的网页代码,就是指在网页制作过程中需要用到的一些特殊的“语言”,设计人员通过对这些“语言”进行组织编排制作出网页,然后由浏览器对代码进行“翻译”后才是我们最终看到的效果。
2、制作网页时常用的代码有HTML,JavaScript,ASP,PHP,CGI等,其中超文本标记语言(标准通用标记语言下的一个应用、外语简称:HTML)是最基础的网页代码。
javascript添加背景图片
这个很简单。有好多方法。
1.直接在body标签中添加一个“background”属性,属性值内容为背景图片地址。
2.用css设置
body{
background-image:
url(图片地址);
}
求一个更换按钮背景图片的js代码
html
head
titleno/title
style type="text/css"
.img1
{
background:url(pic1.jpg) no-repeat left top;
color:#FFF;
border:0;
width:107px;
height:28px;
line-height:27px
}
.img2
{
background:url(pic2.jpg) no-repeat left top;
color:#000;
border:0;
width:107px;
height:28px;
line-height:27px;
}
/style
script type="text/javascript"
function updateImg(obj) {
switch (obj.className) {//根据样式更改背景
case "img1":
obj.className = "img2";
break;
case "img2":
obj.className = "img1";
break;
}
}
/script
/head
body
input class="img1" type="button" value="切换背景" onclick="updateImg(this)" /
/body
/html
不知道你是不是写错了,
如果你的jsp是返回一张图片的话,
把样式中的 pic1.jpg 改成 1.jsp 即可