zoukankan      html  css  js  c++  java
  • UniGUI学习之多张图片轮播(38)

    function afterCreate(sender){ 
      Ext.util.CSS.createStyleSheet(
        "#"+sender.id+"{overflow:hidden; position:relative; }"
       +"#"+sender.id+" .hd{ height:15px; overflow:visible; position:absolute; right:5px; bottom:25px; z-index: 1;}"
        +"#"+sender.id+" .hd ul{ overflow:visible; zoom:1; float:left;  }"
        +"#"+sender.id+" .hd ul li{ float:left; margin-right:2px;  15px; height:15px; line-height:14px; text-align:center; background:#fff; cursor:pointer;list-style-type:none; }"
        +"#"+sender.id+" .hd ul li.on{ background:#f00; color:#fff; }"
      ); 
      Ext.defer(function(){  var S='<div class="hd"><ul>';
        for (i=0;i<$("#"+sender.body.id).children().length; i++){S += "<li></li>"}; S=S+"</ul><div>";
        $("#"+sender.id+" div:first").before(S);
        $("#"+sender.id).slide({mainCell:"#"+sender.body.id,effect:"leftLoop",easing:"easeInOutBack",autoPlay:true,interTime:5000,delayTime:500});;
      },1); 
    }

    要多少张图片,就多加几个UniImage

  • 相关阅读:
    小程序 筛选
    Travel 项目环境配置
    ajax
    vue 项目编译打包
    自学网
    使用npm打包vue项目
    vue音乐播放器项目 二级路由跳转
    better-scroll (下拉刷新、上拉加载)
    Linux命令
    hibernate存储过程 3
  • 原文地址:https://www.cnblogs.com/tulater/p/13325117.html
Copyright © 2011-2022 走看看