1、网页设计如何在背景图片上编辑文字
第一种、将背景图写在css中
<style>
.class{background: url("图片路径") no-repeat;}
</style>
接着就直接在html中写文字内容。
第二种、写在html中
<div class="screen">
<div class="img"><img src="images/logo.png" alt=""></div>
<div class="intro intro--shown"><p>你的文字内容</p></div>
</div>
css样式,
.screen {
position: relative;
width: 1280px;
height: 720px;
overflow: hidden;
}
接着就是包裹的两个div,图片和文字
.img {
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 7px;
position: absolute;
}
.intro {
position: absolute;
width: 100%;
bottom: -5px;
z-index: 20;
}
z-index: 20;就是可以将文字锁定在你图片的上方
2、怎样在网页设计中,在图片上添加文字
可以用PHOTOSHOP来实现
如果你用的是DREAMWEAVER8的话最好用FIREWORK好一些。
先打开图片,然后在点击工回具栏的 A 按钮就可答以在图片上添加你想要的文字了
不会连这种操作都看不懂吧~!
3、网页设计中怎么在图片上添加文字
1、这个在PS中还是很copy好实现的啊;
2、如果实在不会PS,用美图秀秀也可以的啊;
3、当然,如果你问的是如何代码实现这个效果,那也有很多方法,常见的就是图片作为背景,然后框里写文字,或者插入图片,问题做定位就可以
4、网页制作怎么在图片上插入文字
1:你可以把图片设置为背景图片
background后面加上图片的url
在采用div层.
2:用ps也可以做
这是ps下载的网址
http://www.flash800.cn/
5、怎样简单修改网页中的内容,比如图片文字等?
以百度浏览器编辑器为例:
一、打开电脑桌面,点击打开百度浏览器。
二、打开一个网页,在个专人属的中心,有一个自己的金币展示。
三、为了修改金币的数量,右键点击金币的数量,然后点击菜单审查元素。
四、单击打开浏览器自己的开发工具。它将直接位于32号的代码元素中。如果没有,就在附近。您可以在代码中找到并展开三角形。
五、双击这个数字,就会进入编辑状态的。
六、输入最喜欢的号码,然后单击其他位置将编辑状态恢复为正常。
七、最后,看这一页。它已成为变革的梳子。当然,此号码仅用于在浏览器中修改和刷新页面。也会是原来的号码。
6、dreamweaver设计网页编辑文字问题
文字的最上面和最下面总有很大的空间 是因为你的表格太高了,把它的高度调小点。
每段开头空格用可以用按shift+ctrl+space手动增加
7、网页设计文字动态编写
函数名称写错了,点击时调用change(),函数名写成了chang()
在样式表里每一句都要用分号(;)隔开,在wordstyle1,wordstyle2,wordstyle3的所有样式后面都加分号
改正后是这样的:
<html>
<head>
<style type="text/css">
.wordstyle1{
font-family:fantasy
font-size:20pt
font-weight:500
font-variant:normal
font-style:italic
color:blue
background-color:yellow
}
.wordstyle2{
font-family:verdana;
font-size:26pt;
font-weight:700;
font-variant:small-caps;
font-style:normal;
color:white;
background-color:blue;
}
.wordstyle3{
font-family:cursive;
font-size:32pt;
font-weight:900;
font-variant:small-caps;
font-style:bold;
color:yellow;
background-color:green;
}
</style>
<script language="JScript">
var n,i=0
function change () {
i=i+1
n=i%3
if(n==1) id1.className="wordstyle1"
else if (n==2) id1.className="wordstyle2"
else id1.className="wordstyle3"
}
</script>
</head>
<body>
<p id="id1"class="wordstyle3">
Here are three word style<br>
Please click the buttom to see the change.
</p>
<input type="button" value="change" onclick="change ( )">
</body>
</html>
8、请问怎么样在制作网页时在图片上添加文字??
这个只能用div层来解决了,你需要用到层的left,top以及position属性吧文字层定位到图片层上面,只给你提个具体思路