W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
用戶可以在頁面上自定義下拉刷新樣式和定義下拉操作,方便用戶刷新獲取頁面內(nèi)容。
在BlendUI中我們既可以在Layer頁面內(nèi)也可以在LayerGroup頁面內(nèi)使用下拉刷新功能。
代碼主要格式如下:
document.addEventListener("blendready", function() {
Blend.ui.layerInit("contentLayerId",function(dom){
Blend.ui.on("layerPullDown",function(event){
Blend.ui.layerStopRefresh();
});
});
Blend.ui.layerInit("0", function(dom) {
var contentLayer = new Blend.ui.Layer({
"id": "contentLayerId",
"url": "content.html",
"pullToRefresh": true
});
});
});
一個簡單的實(shí)例:
document.addEventListener("blendready", function() {
Blend.ui.layerInit("0", function(dom) {
var contentLayer = new Blend.ui.Layer({
"id": "contentLayerId",
"url": "content.html",
"pullToRefresh": true
});
});
});
溫馨提示:這里定義的Layer需要設(shè)置pullToRefresh為true才可以顯示下拉刷新效果,但目前只是在頁面上增加了效果,具體刷新操作如何配置請向下看。
document.addEventListener("blendready", function() {
Blend.ui.layerInit("contentLayerId",function(dom){
Blend.ui.on("layerPullDown",function(event){
//監(jiān)聽下拉事件,自定義刷新操作
setTimeout(function(){
$("#content", dom).prepend("刷新操作");
//一定要在操作結(jié)束后停止頁面刷新
Blend.ui.layerStopRefresh();
},1000);
});
});
Blend.ui.layerInit("0", function(dom) {
var contentLayer = new Blend.ui.Layer({
"id": "contentLayerId",
"url": "content.html",
"pullToRefresh": true
});
});
});
溫馨提示:這里的刷新操作通過
setTimeout
模擬了一個耗時1秒的請求操作,請求結(jié)束后需要用戶手動結(jié)束頁面刷新操作。
配置下拉文本樣式,默認(rèn)為"下拉刷新"
pullText:"下拉可以刷新⊙0⊙"
配置加載中文本樣式,默認(rèn)為"正在載入"loadingText:"更新中,請等待..."
配置釋放下拉文本樣式,默認(rèn)為"放開以刷新"releaseText:"釋放更新⊙0⊙"
配置加載中圖標(biāo)樣式loadingIcon:"base64圖片字符串,不包含頭"
一個實(shí)例:
document.addEventListener("blendready", function() {
Blend.ui.layerInit("0", function(dom) {
var contentLayer = new Blend.ui.Layer({
"id": "contentLayerId",
"url": "content.html",
"active": true,
"pullToRefresh": true,
"pullText": "下拉可以刷新⊙0⊙",
"loadingText": "更新中,請等待...",
"releaseText": "釋放更新⊙0⊙",
"loadingIcon": "base64圖片字符串,不包含頭"
});
});
Blend.ui.layerInit("contentLayerId",function(dom){
Blend.ui.on("layerPullDown",function(event){
setTimeout(function(){
$("#content", dom).prepend("刷新操作");
Blend.ui.layerStopRefresh();
},1000);
});
});
});
代碼主要格式如下:
document.addEventListener("blendready", function () {
Blend.ui.layerInit("content", function (dom) {
Blend.ui.on("layerPullDown", function (event) {
setTimeout(function () {
$("#page-content", dom).prepend("刷新操作");
Blend.ui.layerStopRefresh();
}, 2000);
});
});
Blend.ui.layerInit("0", function (dom) {
var tabs = new Blend.ui.LayerGroup({
id: "tab",
layers: [
{
"id": 'content',
"url": 'content.html',
"active": true,
"autoload": true,
"pullToRefresh": true,
"pullBgColor": "ff0000",
"pullText": "下拉刷新",
"loadingText": "更新中...",
"releaseText": "釋放更新"
},{
id: 'first',
"url": 'first.html',
"autoload": true
}
]
});
});
});
LayerGroup與Layer頁面下刷新操作基本一致,具體參數(shù)配置和使用方法見上面講解。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: