图片切换,带标题文字

简介: 图片切换,带标题文字 #play{width:500px;height:230px; border:#ccc 1px solid;} #playBg{margin-top:200px;z-index:1;filter:alpha(opacity=70);opacity:0.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" " http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<title>图片切换,带标题文字</title>
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<script type="text/javascript" src="common/jquery-1.2.6.min.js"></script>
<link type="text/css" rel="stylesheet" href="common/common.css" />
<style type="text/css">
#play{width:500px;height:230px; border:#ccc 1px solid;}
#playBg{margin-top:200px;z-index:1;filter:alpha(opacity=70);opacity:0.7;width:500px;position:absolute;height:30px;background:#000;}
#playText{margin-top:200px;z-index:2;padding-left:10px;font-size:14px;font-weight:bold;width:340px;color:#fff;line-height:30px; overflow:hidden;position:absolute;cursor:pointer;}
#playNum{margin:205px 5px 0 350px;z-index:3;width:145px; text-align:right;position:absolute;height:25px;}
#playNum a{margin:0 2px;width:20px;height:20px;font-size:14px; font-weight:bold;line-height:20px;cursor:pointer;color:#000;padding:0 5px;background:#D7D6D7;text-align:center}
#playShow img{width:500px;height:230px;}
</style>
<body>
<div id="play">
 <ul>
        <li id="playBg"></li>
        <li id="playText"></li>
        <li id="playNum"><a>1</a><a>2</a><a>3</a><a>4</a><a>5</a><a>6</a></li>
        <li id="playShow">
            <a href="#" target="_blank"><img src="images/01.jpg" alt="澳大利亚:体验蓝山风光,感受澳洲风情"></a>
            <a href="#" target="_blank"><img src="images/02.jpg" alt="九月抄底旅游,马上行动"></a>
            <a href="#" target="_blank"><img src="images/03.jpg" alt="港澳旅游:超值特价,奢华享受"></a>
            <a href="#" target="_blank"><img src="images/04.jpg" alt="炎炎夏日哪里去,途牛带你海滨游"></a>
            <a href="#" target="_blank"><img src="images/05.jpg" alt="定途牛旅游线路,优惠购买缤纷乐相册"></a>
            <a href="#" target="_blank"><img src="images/03.jpg" alt="三亚自助游"></a>
        </li>
    </ul>
</div>
<script type=text/javascript>
var t = n = 0, count = $("#playShow a").size();
$(function(){
$("#playShow a:not(:first-child)").hide();
$("#playText").html($("#playShow a:first-child").find("img").attr('alt'));
$("#playNum a:first").css({"background":"#FFD116",'color':'#A8471C'});
$("#playText").click(function(){window.open($("#playShow a:first-child").attr('href'), "_blank")});
$("#playNum a").click(function() {
   var i = $(this).text() - 1;
   n = i;
   if (i >= count) return;
   $("#playText").html($("#playShow a").eq(i).find("img").attr('alt'));
   $("#playText").unbind().click(function(){window.open($("#playShow a").eq(i).attr('href'), "_blank")})
   $("#playShow a").filter(":visible").hide().parent().children().eq(i).fadeIn(1200);
   $(this).css({"background":"#FFD116",'color':'#A8471C'}).siblings().css({"background":"#D7D6D7",'color':'#000'});
});
t = setInterval("showAuto()", 5000);
$("#play").hover(function(){clearInterval(t)}, function(){t = setInterval("showAuto()", 5000);});
})
function showAuto()
{
n = n >= (count - 1) ? 0 : ++n;
$("#playNum a").eq(n).trigger('click');
}
</script>
</body>
</html>
相关文章
图文混排
3.7 图文混排 3.7.1 插入图片和剪贴画 1、插入图片 1嵌入式对象: 只能放置到有文档插入点的位置。 不能与其他对象同时选择,不能与其他对象组合。 可以与正文一起排版,但不能实现环绕。 2浮动式对象: 可以放置到页面的任意位置。 可以同时选择多个对象,并允许与其他对象组合。 还可以与正文实现多种形式的环绕。 嵌入式对象 浮动式对象 位置 插入点位置 任意位置 同时选择、组合 不能 能 与正文排版 能 能 环绕 不能 能 默认 图片、剪贴画 形状、艺术字、文本框 非嵌入式(浮动式)对象的环绕方式: 四周型 上下型 紧密型 浮于文字上方 穿越型 衬于文字下方 三种插入
|
6月前
|
前端开发 JavaScript 程序员
掌握这个技术, 轮播图和文本还能更优雅
掌握这个技术, 轮播图和文本还能更优雅
39 0
|
12月前
|
JSON 数据格式
Echarts统计图标题居中显示
Echarts统计图标题居中显示
86 0
|
11月前
|
Linux
文字的显示
文字的显示
129 0
|
开发者
文字控件| 学习笔记
快速学习文字控件。
文字控件| 学习笔记
|
开发者
文字控件|学习笔记
快速学习文字控件
文字控件|学习笔记
|
Linux 云计算 Python
如何在文章中设置灰色文本框(正文底色)
一个优美而又整齐的文章排版是斩获读者三连的必备要素
249 0
如何在文章中设置灰色文本框(正文底色)
|
架构师 开发者
图片和文字控件|学习笔记
快速学习图片和文字控件。
|
前端开发 iOS开发
文字样式处理总结
文字样式处理总结
文字样式处理总结
标签之美六——滚动字幕的应用
标签之美六——滚动字幕的应用
194 0
标签之美六——滚动字幕的应用