SKY外语计算机学习
标题:
js 对联广告
[打印本页]
作者:
sky_yoyo
时间:
2014-1-6 23:25
标题:
js 对联广告
本帖最后由 sky_yoyo 于 2014-1-8 17:34 编辑
我们经常在浏览网页时,看到像是对联一样的广告或者其他的图片文字等等,但是怎么实现这样的效果呢,那么我下面做的就是类似于这种的效果,本人的那个,美观性做的不是很好,大家见谅,将就看吧,知道原理就好了,哈哈
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style type="text/css">
#content{
/*border-radius:700px; 椭圆型
height:160px;
background: -webkit-linear-gradient(yellow,orange,red,green,blue,purple);*/
border:100px;
height:190px;
background:-webkit-radial-gradient(white,black); /*渐变的背景色*/
}
/*fixed 位置固定*/
#left, #right {
width: 100px;
height: 100px;
position: fixed;
top: 260px;
border: 1px solid red;
background-color:#b200ff;
}
#left {
left: 10px;
/*right:10px; 分别的*/
}
#right {
right: 10px;
}
.colse {
position: absolute;
top: 0px;
right: 0px;
}
</style>
<script type="text/javascript">
//function closeguanggao() //id
//{
// //var adv = document.getElementById(id);
// //adv.style.display = "none";
//}
//加载完之后运行的方法
//单击:关闭按钮 --- 实现单个的关闭
window.onload = function () {
//查询分离的行为,下面不显示document.getElementById("content").parentNode.style.display = "none";
var closebtn = document.getElementsByClassName("colse");
for (var i = 0; i < closebtn.length; i++) {
closebtn[i].onclick = function () {
//实现关闭的分离 ----内容与行为的分离
this.parentNode.style.display = "none";
}
}
//------this.parent//取得父窗口
}
</script>
</head>
<body>
<div id="content">
<div id="left">
<img class="colse" src="../img/gif_45_025.gif" /><!--/onclick="closeguanggao(left)"-->
</div>
<div id="right">
<img class="colse" src="../img/gif_45_025.gif" />
</div>
</div>
</body>
</html>
复制代码
欢迎光临 SKY外语计算机学习 (http://join.skywj.com/)
Powered by Discuz! X2.5