apicloud : openFrameGroup 使用

无人久伴 提交于 2019-11-27 12:57:33

1111

 

 

<script type="text/javascript">
apiready = function () {
   goItemFrame( );  
}
 
function goItemFrame( ){
 
    api.openFrameGroup({ // 打开 frame 组
        name: 'group',
        scrollEnabled: false,
        rect: {
            x: 0,
            y: $api.dom('header').offsetHeight,
            w: api.winWidth,
            h: $api.dom('#main').offsetHeight
        },
        index: 0,
        frames:  
        [ 
         {
            name: 'report', 
            url: './html/report.html', 
            bounces:true, 
            vScrollBarEnabled:false,
            hScrollBarEnabled:false
         } 
         {
             name: 'center', 
            url: './html/center.html', 
            bounces:true, 
            vScrollBarEnabled:false,
            hScrollBarEnabled:false
        }]
    }, function (ret, err) {
         alert(ret.index); //获取当前切换到的索引值
         
         
         
    });
}

function randomSwitchBtn(tag,nm){
  
   var eFootLis = $api.domAll('#footer ul li');
   index = 0;
   for (var i = 0,len = eFootLis.length; i < len; i++) 
   {
       if( tag == eFootLis[i]){
           index = i;
       }else{
           $api.removeCls(eFootLis[i], 'active');
       }
   }
   $api.addCls( eFootLis[index], 'active');
   api.setFrameGroupIndex({
       name: 'group',
       index: index,//设置每次切换的索引
       scroll: true// 滚动切换
   });
   goItemFrame();
}
</script>

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!