- 全局標簽
- artlist 文章列表
- models 欄目列表
- modelsartlist 頻道循環(huán)
- type 指定欄目
- include 引用模板
- arcview 單條文檔
- position 面包屑
- assign 定義變量
- empty 為空判斷
- notempty 不為空判斷
- foreach 循環(huán)輸出
- volist 數(shù)據(jù)循環(huán)
- if 條件判斷
- switch 條件判斷
- compare 變量比較
- adv 廣告列表
- load 文件加載
- global 全局變量
- field 字段值
- tags 標簽調(diào)用
- searchform 搜索標簽
- 常用函數(shù)
- links 友情鏈接
- SQL 數(shù)據(jù)查詢
- weapp 應用插件
- range 范圍判斷
- for 數(shù)據(jù)循環(huán)
- ad 單條廣告
- attribute 欄目屬性
- user 會員信息
- diyurl 內(nèi)鏈調(diào)用
- php標簽
- hotkeywords 熱門搜索
- notice 站內(nèi)信
- asklist 問答列表
- citysite 城市站點
- navigation 導航菜單
- static 文件引入
- 會員信息(memberlist)
- 會員注銷標簽使用方法
- 列表標簽
- 內(nèi)容標簽
- 可視化標簽
- 多語言標簽
uibackground 背景圖片
【基礎用法】
標簽:uibackground
描述:背景圖片上傳標簽,使用時結(jié)合html一起才能完成可視化布局,只針對具有可視化功能的模板。
用法:
<div class="eyou-edit" e-id="文件模板里唯一的數(shù)字ID" e-page='文件模板名' e-type="background" style="background-image: url({eyou:uibackground e-id='必須與前面的數(shù)字ID一致' e-page='必須與前面的文件模板名一致' e-img='skin/images/abo/about_img1.png' /}) no-repeat center top;">
這里是背景圖片的代碼內(nèi)容
</div>
<div class="eyou-edit" e-id="文件模板里唯一的數(shù)字ID" e-page='文件模板名' e-type="background" style="background-image: url({eyou:uibackground e-id='必須與前面的數(shù)字ID一致' e-page='必須與前面的文件模板名一致' e-img='skin/images/abo/about_img1.png' /}) no-repeat center top;">
這里是背景圖片的代碼內(nèi)容
</div>
屬性:
e-id='' 每個模板文件里唯一的數(shù)字ID,必須與uibackground標簽外層的html元素標簽e-id保持一致
e-page='' 頁面分組,假設模板文件是index.htm,那么e-page的值是index
e-img='' 背景圖片在模板中的相對路徑
e-img='' 背景圖片在模板中的相對路徑
涉及表字段:
無
【更多示例】
-------------------------------示例1--------------------------------
描述:在模板文件index.htm中調(diào)用uibackground標簽,實現(xiàn)指定背景圖片區(qū)域可視化上傳的效果。
<!DOCTYPE html>
<html>
<head>
<title>EyouCms企業(yè)建站系統(tǒng)</title>
</head>
<body>
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
<!-- 可視化模板必須引入的ui標簽 start -->
{eyou:ui open='off' /}
<!-- 可視化模板必須引入的ui標簽 end -->
</body>
</html>
-------------------------------示例2--------------------------------
描述:在模板文件lists_article.htm中調(diào)用uibackground標簽,實現(xiàn)指定背景圖片區(qū)域可視化上傳的效果。
<!DOCTYPE html>
<html>
<head>
<title>EyouCms企業(yè)建站系統(tǒng)</title>
</head>
<body>
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
<!-- 可視化模板必須引入的ui標簽 start -->
{eyou:ui open='off' /}
<!-- 可視化模板必須引入的ui標簽 end -->
</body>
</html>
-------------------------------示例3--------------------------------
描述:在模板文件index.htm中,多處調(diào)用uibackground標簽的寫法。
<!DOCTYPE html>
<html>
<head>
<title>EyouCms企業(yè)建站系統(tǒng)</title>
</head>
<body>
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
<!-- 可視化模板必須引入的ui標簽 start -->
{eyou:ui open='off' /}
<!-- 可視化模板必須引入的ui標簽 end -->
</body>
</html>
-------------------------------示例4--------------------------------
描述:在模板文件index.htm中,多處調(diào)用uibackground標簽的寫法,只在html最外層元素指定一次e-page屬性值。
<!DOCTYPE html>
<html>
<head>
<title>EyouCms企業(yè)建站系統(tǒng)</title>
</head>
<body e-page='index'> <!-- 最外層指定e-page屬性值,里面html元素<a>可以不再指定e-page屬性值 -->
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
<div>
<!-- uibackground可視化標簽調(diào)用 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;">
這里是背景圖片的代碼內(nèi)容
</div>
<!-- uibackground可視化標簽調(diào)用 end -->
<div>
</div>
<!-- 可視化模板必須引入的ui標簽 start -->
{eyou:ui open='off' /}
<!-- 可視化模板必須引入的ui標簽 end -->
</body>
</html>
文檔最后更新時間:2023-10-24 11:08:15
← uicode 源代碼
uimap 地圖定位 →
未解決你的問題?請到「問答社區(qū)」反饋你遇到的問題