dedecms 广告管理模块中 调用ckeditor编辑器
后台->模块->广告管理,可以看到网站上所有的广告js,‘[JS] [更改] [删除]’,点击js时可以看到你的广告和js代码,例如;点击更改时,如果是广告就可以看到“”把改成自己想要显示的就可以了,如果是后台没有的js,可以自己添加一
漂浮广告用如下代码:
<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>
把需要改的地方改了就可以了,
一、下载ueditor
请自己下载ueditor版本(本人是PHP版本 UFT-8版,不包含_examples、_src等文件夹及文件)。下载完成后,会得到以下这样的目录结构的:
ueditor文件说明:
dialogs 是存放各个弹出窗口应用功能的文件,包含html,js
lang 是存放编辑器语言的文件,有中文和E文
php 是存放文件上传、涂鸦、远程、在线管理,添加视频的php源码文件,可以按自己的需求修改
themes 当然就是主题样式存放的地方
third-party 是第三方插件文件存放地方。
editoralljs 此文件是所有_src里的js源码的合集
editorallminjs 此文件是editor_alljs的压缩版
0条评论