dedecms 如何在导航下做广告 详细一点因为我是新手
MetInfo企业网站管理系统采用PHP+Mysql架构,全站内置了SEO搜索引擎优化机制,支持用户自定义界面语言(全球各种语言),拥有企业网站常用的模块功能(企业简介模块、新闻模块、产品模块、下载模块、模块、招聘模块、在线留言、反馈系统、在线交流、友情链接、网站地图、会员与权限管理)。强大灵活的后台管理功能、静态页面生成功能、个性化模块添加功能、不同栏目自定义FLASH样式功能等可为企业打造出大气漂亮且具有营销力的精品网站。
1、在后台-模块-广告管理-新增一个广告
2、会得到一个广告调用代码--广告代码的调用方法:{dede:myad
name='广告位标识'/}
3、在模板管理里-修改你需要的模板将该代码添加到你想要显示的位置上。
如果是在导航下的话 在templets\default\headhtm 找到这个文件。
打开文件在文件最下方加入你的广告代码就可以了。 这种是整站都挂广告的。 如果是要在不同的页面挂不同的广告的话 就要在模版文件里面找相应的文件修改其源代码就可以了。
漂浮广告用如下代码:
<html xmlns="http://wwww3org/1999/xhtml"><head>
<title>js实现可关闭的自由漂浮广告代码_js特效_特效代码_wwwxunmzycom</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<style type="text/css">
#img1{width:auto;position:absolute;top:43px;left:2px;z-index:10;}
#img1 div{width:auto;text-align:right;font-size:12px;}
#img1 div a:link{text-decoration:none;}
#img1 div a:hover{color:red;text-decoration:none;}
#img1 img{width:auto;border:1px solid black;}
p{margin-top:50px;text-align:center;}
</style>
</head>
<body>
<div id="img1" onmouseover="pause_resume()" onmouseout="pause_resume()">
<div><a href="javascript:void(0);" onclick="closediv()" title="点击关闭">关闭</a></div>
<a href="https://wwwxunmzycom/" target="_blank"><img src="images/logo_pngpng" alt="js实现可关闭的自由漂浮广告代码"></a>
</div>
<p>js代码可关闭的自由漂浮的广告特效</p>
<script type="text/javascript">
var xPos = 300;
var yPos = 200;
var step = 1;
var delay = 30;
var height = 0;
var Hoffset = 0;
var Woffset = 0;
var yon = 0;
var xon = 0;
var pause = true;
var interval;
var divid = img1; //浮动DIV的ID
dividstyletop = yPos;
function changePos(){
width = documentbodyclientWidth;
height = documentbodyclientHeight;
Hoffset = dividoffsetHeight;
Woffset = dividoffsetWidth;
dividstyleleft = xPos + documentbodyscrollLeft;
dividstyletop = yPos + documentbodyscrollTop;
if(yon){yPos = yPos + step;}else{yPos = yPos - step;}
if(yPos < 0){yon = 1;yPos = 0;}
if(yPos >= (height - Hoffset)){yon = 0; yPos = (height - Hoffset);}
if(xon){xPos = xPos + step;}else{xPos = xPos - step;}
if(xPos < 0){xon = 1;xPos = 0;}
if(xPos >= (width - Woffset)){xon = 0; xPos = (width - Woffset);}
}
function start(){
dividvisibility = "visible";
interval = setInterval('changePos()',delay);
}
function pause_resume(){
if(pause){
clearInterval(interval);
pause = false;}
else{
interval = setInterval('changePos()',delay);
pause = true;
}
}
function closediv(){
clearInterval(interval);
dividstyledisplay = "none";
}
start();
</script>
</body>
</html>
把需要改的地方改了就可以了,
0条评论