【基础用法】标签:uibackground描述:背景图片上传标签,使用时结合html一起才能完成可视化布局,只针对具有可视化功能的模板。用法:
<div class="eyou-edit" e-id="文件模板里唯一的数字ID" e-page='文件模板名' e-type="background" style="background-image: url({eyou:uibackground e-id='必须与前面的数字ID一致' e-page='必须与前面的文件模板名一致' e-img='skin/images/abo/about_img1.png' /}) no-repeat center top;">
这里是背景图片的代码内容
</div>属性: e-id='' 每个模板文件里唯一的数字ID,必须与uibackground标签外层的html元素标签e-id保持一致 e-page='' 页面分组,假设模板文件是index.htm,那么e-page的值是index
e-img='' 背景图片在模板中的相对路径涉及表字段: 无 【更多示例】 -------------------------------示例1-------------------------------- 描述:在模板文件index.htm中调用uibackground标签,实现指定背景图片区域可视化上传的效果。 <!DOCTYPE html> <html> <head> <title>EyouCms企业建站系统</title> </head> <body>
<div>
<!-- uibackground可视化标签调用 start -->
<div class="eyou-edit" e-id="300" e-page='index' e-type="background" style="background-image: url({eyou:uibackground e-id='300' e-page='index' e-img='skin/images/abo/about_img1.png' /}) no-repeat center top;">
这里是背景图片的代码内容
</div>
<!-- uibackground可视化标签调用 end -->
<div> <!-- 可视化模板必须引入的ui标签 start --> {eyou:ui open='off' /} <!-- 可视化模板必须引入的ui标签 end --> </body> </html> -------------------------------示例2-------------------------------- 描述:在模板文件lists_article.htm中调用uibackground标签,实现指定背景图片区域可视化上传的效果。 <!DOCTYPE html> <html> <head> <title>EyouCms企业建站系统</title> </head> <body>
<div>
<!-- uibackground可视化标签调用 start -->
<div class="eyou-edit" e-id="300" e-page='lists_article' e-type="background" style="background-image: url({eyou:uibackground e-id='300' e-page='lists_article' e-img='skin/images/abo/about_img1.png' /}) no-repeat center top;">
这里是背景图片的代码内容
</div>
<!-- uibackground可视化标签调用 end -->
<div> <!-- 可视化模板必须引入的ui标签 start --> {eyou:ui open='off' /} <!-- 可视化模板必须引入的ui标签 end --> </body> </html> -------------------------------示例3-------------------------------- 描述:在模板文件index.htm中,多处调用uibackground标签的写法。 <!DOCTYPE html> <html> <head> <title>EyouCms企业建站系统</title> </head> <body>
<div>
<!-- uibackground可视化标签调用 start -->
<div class="eyou-edit" e-id="300" e-page='index' e-type="background" style="background-image: url({eyou:uibackground e-id='300' e-page='index' e-img='skin/images/abo/about_img1.png' /}) no-repeat center top;">
这里是背景图片的代码内容
</div>
<!-- uibackground可视化标签调用 end -->
<div>
<div>
<!-- uibackground可视化标签调用 start -->
<div class="eyou-edit" e-id="301" e-page='index' e-type="background" style="background-image: url({eyou:uibackground e-id='301' e-page='index' e-img='skin/images/abo/about_img2.png' /}) no-repeat center top;">
这里是背景图片的代码内容
</div>
<!-- uibackground可视化标签调用 end -->
<div>
<!-- 可视化模板必须引入的ui标签 start --> {eyou:ui open='off' /} <!-- 可视化模板必须引入的ui标签 end --> </body> </html> -------------------------------示例4-------------------------------- 描述:在模板文件index.htm中,多处调用uibackground标签的写法,只在html最外层元素指定一次e-page属性值。 <!DOCTYPE html> <html> <head> <title>EyouCms企业建站系统</title> </head> <body e-page='index'> <!-- 最外层指定e-page属性值,里面html元素<a>可以不再指定e-page属性值 -->
<div>
<!-- uibackground可视化标签调用 start -->
<div class="eyou-edit" e-id="300" e-type="background" style="background-image: url({eyou:uibackground e-id='300' e-page='index' e-img='skin/images/abo/about_img1.png' /}) no-repeat center top;">
这里是背景图片的代码内容
</div>
<!-- uibackground可视化标签调用 end -->
<div>
<div>
<!-- uibackground可视化标签调用 start -->
<div class="eyou-edit" e-id="301" e-type="background" style="background-image: url({eyou:uibackground e-id='301' e-page='index' e-img='skin/images/abo/about_img2.png' /}) no-repeat center top;">
这里是背景图片的代码内容
</div>
<!-- uibackground可视化标签调用 end -->
<div>
</div> <!-- 可视化模板必须引入的ui标签 start --> {eyou:ui open='off' /} <!-- 可视化模板必须引入的ui标签 end --> </body> </html>
标签:index,标签,htm,背景图片,uibackground,模板 From: https://www.cnblogs.com/hwrex/p/18320674