A. 怎么使用dw可以让这两张图片可以并排起来
1、首先插入两个div标签,点击【插入】,找到【布局对象】—【Div标签】。
B. Dreamweaver如何制作背景图片并在其上叠加图片
楼主想要的应该是这种效果吧
HTML代码如下:
<divid="layer1">
<ulid="list1">
<li><imgsrc="02_1s.jpg"width="100"height="75"/></li>
<li><imgsrc="02_2s.jpg"width="100"height="75"/></li>
<li><imgsrc="02_3s.jpg"width="100"height="75"/></li>
<li><imgsrc="02_4s.jpg"width="100"height="75"/></li>
</ul>
</div>
CSS代码如下:
<styletype="text/css">
#layer1{
background-image:url(102.jpg);
height:333px;
width:500px;
}
#list1li{
margin:10px;
float:left;
list-style-type:none;
}
</style>
看不明白的话还有做好的附件
C. DW网页设计器如何添加图片
1、打开Dreamweaver软件。
2、点击HTML。
D. Dw如下图,大家帮帮忙,请问怎么能让四张图拼在一起
制作一个2*2表格,隐藏边线,然后的分别插入图像就好了
E. 怎么在DW里图片上再加图片我想在图片上放旺旺,发现无法重叠上去
这是一个大致的例子,仅供参考
F. 在dw中让图片一行显示4个,分2行显示的代码是多少呀
<table width="" border="0">
<tr><td><img src="">复制四个</td></tr>
<tr><td>同上复制两个</td></tr>
</table>
G. 在dw里面如何自动切换4-5张图片
在需要的地方插入以下代码
<script type="text/javascript">
imgUrl1="img/1.jpg";(图片名称和路径,你要修改,然后将括号内容删除)
imgUrl2="img/2.jpg";
imgUrl3="img/3.jpg";
imgUrl4="img/4.jpg";
imgUrl5="img/5.jpg";
var focus_width='400'(图片宽度你要修改,然后将括号内容删除)
var focus_height='300'(图片高度你要修改,然后将括号内容删除)
var text_height='|||'
var swf_height = focus_height
var pics=imgUrl1+"|"+imgUrl2+"|"+imgUrl3+"|"+imgUrl4+"|"+imgUrl5
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">');
document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="http://www.webjx.com/js/focus.swf"><param name="quality" value="high"><param name="bgcolor" value="#F0F0F0">');
document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
document.write('<param name="FlashVars" value="pics='+pics+'&borderwidth='+focus_width+'&borderheight='+focus_height+'">');
document.write('<embed src="pixviewer.swf" wmode="opaque" FlashVars="pics='+pics+'&borderwidth='+focus_width+'&borderheight='+focus_height+'" menu="false" bgcolor="#F0F0F0" quality="high" width="'+ focus_width +'" height="'+ focus_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'); document.write('</object>');
</script>
H. 怎么用Dreamweaver在一段文字后面加图片
直接给图片设置float:left ;就行了,其他的css样式自己再调。例如
<div><img src="1.jpg" style="float:left" /><p>123456789</p></div>.
1、点击--修改--页面属性 在外观中 添加背景图片。
2、插入表格--然后在表格中添加数据即可。
I. 如何在DW的表格中插入图片
一、工具:Dreamweaver软件
二、操作步骤:
【1】打开Dreamweaver软件。
J. dw中的表格如何设置多个背景图片
方法一、再建一表格,将图片与表格分别放入两个单元格中。
即:
<talbe>
<tr>
<td>
<!-- IMAGE -->
</td>
<td style="text-align:center">
<!-- TABLE -->
</td>
</tr>
</table>
方法二、在图片外套一个DIV标签,再在表格外套一个DIV,然后设置DIV属性。
即:
<style>
.content{text-align:center;border:4px solid #99CC00;width:40%;}
.content #left{height:200px;float:left;border:4px solid #BB0000;width:40%;}
.content #right{height:200px;float:left;border:4px solid #009999;width:60%;text-align:center;} <!-- float还是left -->
.content img{width:100%;height:192px;}
.content .t1{width:80%;margin-top:2px;}
.content .t1 td{height:80px;border:3px dotted #990099;width:50%;text-align:center;}
</style>
<div class="content">
<div id="left"><img alt="LEFT" title="IMAGE" /></div>
<div id="right">RIGHT<table cellpadding="0" cellspacing="0"
class="t1"><tr><td>R11</td><td>R12</td></tr><tr><td>R21</td><td>R22</td></tr></table></div>
</div>
方法三、如果什么都不相加也可以,只是不太好。
即:
<style>
.img{left:20px;position:absolute;border:5px solid #AA0000;width:150px;height:200px}
.table{width:30%;height:200px;text-align:center;font-family:"楷体";color=#992211;font-size:2em;}
td{border:3px solid #00AA00;}
</style>
<center>
<img class="img" alt="LEFT"/>
<table class="table" cellpadding="0" cellspacing="0">
<tr>
<td>
RIGHT1
</td>
<tr>
<tr>
<td>
RIGHT2
</td>
<tr>
</talbe>
</center>