热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

JavaScript原生折叠扩展收缩菜单带缓冲动画

JavaScript原生折叠扩展收缩菜单带缓冲动画@落雨<div><

>

id="show_1_ct_1" class="show_1_ct" st">"display: none;"> class="ul1">
  • class="sp1"> 机房总面积2500平米,一期面积1100平方米,8级抗震建筑结构
  • class="sp1"> 机房位于一楼,承重>1000公斤/平方米,绝缘地板设计,防电磁干扰设施
  • class="sp1"> T3+级国际标准建造,先进的节能环保设计
  • class="sp1"> 充足的电力保障,丰富的网络资源
  • class="sp1"> 优质的机房环境,优越的地理位置,便捷的交通线路
  • class="sp1"> 全方位的业务范围,全面的管理、配套服务
  • class="show_1" OnClick="spread('show_1_ct_2',this);"> 综合布线 class="show_right"> class="show_img" src="img/show_btn.png"> id="show_1_ct_2" class="show_1_ct" st">"display: none;"> class="ul1">
  • class="sp1"> 分层走线,隐蔽、美观;
  • class="sp1"> 桥架三层结构,由下至上分别以强电、光纤、弱电分布;
  • class="sp1"> 中层以光纤分隔防止强电信号干扰;
  • class="sp1"> 下层地面涂防水胶,加上3层抗静电、防尘漆。保证下层温度、湿度及清洁;
  • class="show_1" OnClick="spread('show_1_ct_3',this);">机柜布置 class="show_right"> class="show_img" src="img/show_btn.png"> class="show_1_ct" id="show_1_ct_3" st">"display: none;"> class="ul1">
  • class="sp1"> 采用19英寸标准封闭式机柜,长宽高分别为110cm\60cm\200cm;
  • class="sp1"> 所有标准机柜设有锁定功能,布放单模、多模的光纤和网线的集线排;
  • class="sp1"> 机柜全部预布放超五类线缆;
  • class="sp1"> 机柜组全部布放多模及单模光纤;
  • class="sp1"> 骨干布线桥架由配线间接入各个机房区域,提供灵活、冗余的布线方式;
  • class="sp1"> 机柜布线全部采用国际著名品牌,实现光纤、铜缆分桥架布设。
  • class="show_1" OnClick="spread('show_1_ct_4',this);">供电系统 class="show_right"> class="show_img" src="img/show_btn.png"> class="show_1_ct" id="show_1_ct_4" st">"display: none;"> class="ul1">
  • class="sp1"> 两路通信市电高压供电系统,每路供电容量1600KVA,主备自动切换;
  • class="sp1"> 双路冗余大功率智能台达(delta)UPS,1+1冗余备份,后备蓄电池全负载供电时间≥30min;
  • class="sp1"> 网络运行中心(NOC)24小时监测;
  • class="sp1"> 康明斯+马拉松 柴油供电系统,满载油机备油持续供电时间≥48h.;
  • 
    /**
     * 展开与收缩
     * @param {[type]} ObjectId [description] 需要操作的ID
     * @param {[type]} me [description] 当前对象,非必须
     * @return {[type]} [description]
     */
    function spread(ObjectId, me) {
    
    
        var img = me.getElementsByTagName('img')[0];
        
        if ($X(ObjectId).style.display == 'none') {
            me.style.color = '#34a8bf';
            Start(ObjectId, 'Opens');
            //替换右边小图标
            img.src="img/show_btn1.png";
             
        } else {
            me.style.color = '#000';
            Start(ObjectId, 'Close');
            img.src="img/show_btn.png";
        }
    }
    
    /**
     * 根据ID返回对象
     * @param {[type]} Read_Id [description]
     * @return {[type]} [description]
     */
    function $X(Read_Id) {
        return document.getElementById(Read_Id);
    }
    
    /**
     * 开始动画+收缩啊啊啊啊啊啊啊啊
     * @param {[type]} ObjId [description]
     * @param {[type]} method [description]
     */
    function Start(ObjId, method) {
        var oo = $X(ObjId);
        var firstH = oo.offsetHeight; //获取对象高度 
        firstH = firstH == 0 ? '300px' : firstH;
        if (method == "Close") {
    
            startrun(oo, "height", 0, function() {
                oo.style.display = "none";
            }, 'close');
    
    
        } else if (method == "Opens") {
            oo.style.display = "block";
            oo.style.height = 0;
    
            startrun(oo, "height", 300, function() {
                 
            }, 'close');
    
    
            //oo.style.height = firstH;
        }
    
    }
    
    /**
     * 获得Style属性
     * @param {[type]} obj [description]
     * @param {[type]} name [description]
     * @return {[type]} [description]
     */
    function getstyle(obj, name) {
        if (obj.currentStyle) {
            return obj.currentStyle[name];
        } else {
            return getComputedStyle(obj, false)[name];
        }
    }
    
    /**
     * 动画库
     * @param {[type]} obj [description]
     * @param {[type]} attr [description]
     * @param {[type]} target [description]
     * @param {Function} fn [description]
     * @param {[type]} action [description]
     * @return {[type]} [description]
     */
    function startrun(obj, attr, target, fn, action) {
    
    
        clearInterval(obj.timer);
        obj.timer = setInterval(function() {
            var cur = 0;
    
            obj.style.overflow = 'hidden';
    
            if (attr == "opacity") {
                cur = Math.round(parseFloat(getstyle(obj, attr)) * 100);
            } else {
                cur = parseInt(getstyle(obj, attr));
            }
            var speed = (target - cur) / 8;
            speed = speed > 0 ? Math.ceil(speed) : Math.floor(speed);
    
            if (cur == target) {
                clearInterval(obj.timer);
                if (fn) {
                    fn();
                }
            } else {
                if (attr == "opacity") {
                    obj.style.filter = "alpha(opacity=" + (cur + speed) + ")";
                    obj.style.opacity = (cur + speed) / 100;
                } else {
                    obj.style[attr] = cur + speed + "px";
                }
            }
    
            if (action == 'open') {
                //obj.style.display = "block";
            } else {
                //obj.style.display = "none";
            }
    
        }, 30)
    }

    推荐阅读
    author-avatar
    手机用户248覀9795477
    这个家伙很懒,什么也没留下!
    PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
    Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有