HTML网页设计中可自切换的动态图片框如何制作? 20

类似hao123.com左侧的动态图片框,可能里面有数张图片,过数秒钟自动切换(切换的同时有淡化过渡特效),同时鼠标移动到图片的左侧和右侧都会出现左右箭头控制切换。自己没... 类似hao123.com左侧的动态图片框,可能里面有数张图片,过数秒钟自动切换(切换的同时有淡化过渡特效),同时鼠标移动到图片的左侧和右侧都会出现左右箭头控制切换。

自己没能找到实例,网站源代码太多分析不明白,请教在自己网页中实现类似的效果的方法,谢谢!
也可参阅www.115.com首页背景图片的特效。
展开
 我来答
keep你的线条
2014-07-09 · 超过26用户采纳过TA的回答
知道答主
回答量:115
采纳率:0%
帮助的人:46.4万
展开全部
大概的主程序

<div style="margin:auto; width:635px;">
<div class="FocusPic">

<div class="FP_arr_left" id="FS_arr_left_01"></div>

<div class="FP_arr_right" id="FS_arr_right_01"></div>

<div class="FP_NumList" id="FS_numList_01"></div>

<div class="FP_cont" id="FS_Cont_01">

<div class="FP_pic">

<div style="width:635px; height:360px; overflow: hidden;"><a href="#" target="_blank"><img src="#" galleryImg="no" alt="" width="635"/></a></div>

<div class="FP_tit_bg"></div>

<div class="FP_tit_txt"><a href="#" target="_blank">示例1</a></div>

<div class="FP_tit_ico"></div>

</div>

<div class="FP_pic">

<div style="width:635px; height:360px; overflow: hidden;"><a href="#" target="_blank"><img src="#" galleryImg="no" alt="" width="635"/></a></div>

<div class="FP_tit_bg"></div>

<div class="FP_tit_txt"><a href="#" target="_blank">示例2</a></div>

<div class="FP_tit_ico"></div>

</div>

<div class="FP_pic">

<div style="width:635px; height:360px; overflow: hidden;"><a href="#" target="_blank"><img src="#" galleryImg="no" alt="" width="635"/></a></div>

<div class="FP_tit_bg"></div>

<div class="FP_tit_txt"><a href="#" target="_blank">示例3</a></div>

<div class="FP_tit_ico"></div>

</div>

<script language="javascript" type="text/javascript">

var focusScroll_01 = new ScrollPic();

focusScroll_01.scrollContId = "FS_Cont_01"; //内容容器IDfocusScroll_01.arrLeftId = "FS_arr_left_01";//左箭头IDfocusScroll_01.arrRightId = "FS_arr_right_01"; //右箭头IDfocusScroll_01.dotListId = "FS_numList_01";//点列表IDfocusScroll_01.dotClassName = "dot_list";//点classNamefocusScroll_01.dotOnClassName= "dot_list selected";//当前点classNamefocusScroll_01.listType= "";//列表类型(number:数字,其它为空)focusScroll_01.listEvent = "onmouseover"; //切换事件focusScroll_01.frameWidth = 635;//显示框宽度focusScroll_01.pageWidth = 635; //翻页宽度focusScroll_01.upright = false; //垂直滚动focusScroll_01.speed = 20; //移动速度(单位毫秒,越小越快)focusScroll_01.space = 20; //每次移动像素(单位px,越大越快)focusScroll_01.autoPlay = true; //自动播放focusScroll_01.autoPlayTime = 3; //自动播放间隔时间(秒)focusScroll_01.initialize(); //初始化</script>
匿名用户
推荐于2017-06-14
展开全部
这个是用JS或者是Jquery来实现。单独用html还实现不了,当然我这里说的html是指html 4
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
创作者dijuh
2017-06-14 · 网络营销,网络推广,网站建设,网站优化
创作者dijuh
采纳数:841 获赞数:1753

向TA提问 私信TA
展开全部
大概的主程序

<div style="margin:auto; width:635px;">
<div class="FocusPic">

<div class="FP_arr_left" id="FS_arr_left_01"></div>

<div class="FP_arr_right" id="FS_arr_right_01"></div>

<div class="FP_NumList" id="FS_numList_01"></div>

<div class="FP_cont" id="FS_Cont_01">

<div class="FP_pic">

<div style="width:635px; height:360px; overflow: hidden;"><a href="#" target="_blank"><img src="#" galleryImg="no" alt="" width="635"/></a></div>

<div class="FP_tit_bg"></div>

<div class="FP_tit_txt"><a href="#" target="_blank">示例1</a></div>

<div class="FP_tit_ico"></div>

</div>

<div class="FP_pic">

<div style="width:635px; height:360px; overflow: hidden;"><a href="#" target="_blank"><img src="#" galleryImg="no" alt="" width="635"/></a></div>

<div class="FP_tit_bg"></div>

<div class="FP_tit_txt"><a href="#" target="_blank">示例2</a></div>

<div class="FP_tit_ico"></div>

</div>

<div class="FP_pic">

<div style="width:635px; height:360px; overflow: hidden;"><a href="#" target="_blank"><img src="#" galleryImg="no" alt="" width="635"/></a></div>

<div class="FP_tit_bg"></div>

<div class="FP_tit_txt"><a href="#" target="_blank">示例3</a></div>

<div class="FP_tit_ico"></div>

</div>

<script language="javascript" type="text/javascript">

var focusScroll_01 = new ScrollPic();

focusScroll_01.scrollContId = "FS_Cont_01"; //内容容器IDfocusScroll_01.arrLeftId = "FS_arr_left_01";//左箭头IDfocusScroll_01.arrRightId = "FS_arr_right_01"; //右箭头IDfocusScroll_01.dotListId = "FS_numList_01";//点列表IDfocusScroll_01.dotClassName = "dot_list";//点classNamefocusScroll_01.dotOnClassName= "dot_list selected";//当前点classNamefocusScroll_01.listType= "";//列表类型(number:数字,其它为空)focusScroll_01.listEvent = "onmouseover"; //切换事件focusScroll_01.frameWidth = 635;//显示框宽度focusScroll_01.pageWidth = 635; //翻页宽度focusScroll_01.upright = false; //垂直滚动focusScroll_01.speed = 20; //移动速度(单位毫秒,越小越快)focusScroll_01.space = 20; //每次移动像素(单位px,越大越快)focusScroll_01.autoPlay = true; //自动播放focusScroll_01.autoPlayTime = 3; //自动播放间隔时间(秒)focusScroll_01.initialize(); //初始化</script>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Sun识
2014-07-09 · 超过20用户采纳过TA的回答
知道答主
回答量:89
采纳率:0%
帮助的人:38.7万
展开全部
用图片轮播,js或jq
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式