APICloud 左右滑动部分超出屏幕高度解决方案

最近有这样的一个功能,我们需要左右滑动的部分超出了屏幕的高度了。最开始想的是采用openFrame来解决,但是你发现这样是不可以的,因为他会浮在win上面。


APICloud尴尬之处,滑动的功能超出屏幕高度.png

为了解决这个问题,我也遇到了很多问题,
1、超出屏幕高度它页面不会滚动
2、加入swiper后,无法实现左右滚动。

超出屏幕高度它页面不会滚动

出现这个原因

body, html, #allmap {
              width: 100%;
              height: 100%;
              overflow: hidden;
              margin: 0;
              font-family: "微软雅黑";
          }

是因为你像上面那样定义了height为100%,然后又写了overflow:fidden,那么导致的结果就是被隐藏部分,毕竟你已经定死了高度为手机的高度,它不会采用默认增长的模式height:auto 这样的结构


解决APIcloud尴尬地方.gif

关于如何绘画圆形这个我就不会再细细的说明了。大家可以看我前面的一篇文章就可以知道怎么画的,我这篇文章就只会再描述之前我没有描述到的。我想说下实现那种图的思路,
首先创建SVG--->添加g标签--->添加path画圆--->再次添加path画圆

定义数据源
       var innerRidus = 40;//内圆半径
        var outerRidus = 60;
        var circleSVGW = 200;//SVG的宽度
        var circleSVGH = 130;
        var datasetLeft = '';
        var datasetRight = '';
        var COL1 = 161.9, COL2 = 0.1, COL3 = 158.6, COL4 = 3.4, COL5 = 162;
        if (status == COMPANINDICATOR_10) {//这里算出占有量
            datasetLeft = COL1 / COL5 * 100;
            datasetRight = COL2 / COL5 * 100;
        } else {
            datasetLeft = COL3 / COL5 * 100;
            datasetRight = COL4 / COL5 * 100;
        }
        if (datasetLeft < 1) {//如果我们的量<1那么都要给1的比例
            datasetLeft = 1
        }
        if (datasetRight < 1) {
            datasetRight = 1
        }
        //这里我定义了一个取值范围。
        var arrLeft = [datasetLeft, (100 - datasetLeft)];
        var arrRight = [datasetRight, (100 - datasetRight)];

        //值访问器,可以将数据转换为d,然后作用于path上
        var pie = d3.layout.pie().value(function (d) {
            return d;
        });
        //可以将数据转换为d,然后作用于path上
        var piedataLeft = pie(arrLeft);
        var piedataRight = pie(arrRight);

上面我认为没有什么可以说的了,都是比较简单的

开始画圆

因为这里我们要画4个圆,所以我把公共的代码抽离了出来

/**
     * @date:2018/4/20 16:34
     * 功能: 画圆公共的代码
     * @innerRidus 内圆半径
     * @outerRidus 外圆半径
     * @circleSVGW SVG宽度
     * @circleSVGH SVG高度
     * @piedataLeft 数据源
     * @svgId 绘画到哪个ID上
     * @status 状态码
     */
    function d3CircleUtil(innerRidus, outerRidus, circleSVGW, circleSVGH, piedataLeft, svgId, status) {
        //创建弧生成器
        var arcGenerator = d3.svg.arc()
                .innerRadius(innerRidus)
                .outerRadius(outerRidus);

        //定义SVG的宽高
        var svg1 = d3.select(svgId)
                .append("svg")
                .attr("width", circleSVGW)
                .attr("height", circleSVGH);

        //添加G标签,移动到中心位置
        var backGroundDataSet = [{startAngle: 0, endAngle: Math.PI * 2}];//定义背景圆
        var arcs = svg1.selectAll("g")
                .data(backGroundDataSet)
                .enter()
                .append("g")
                .attr("transform", "translate(" + circleSVGW / 2 + "," + circleSVGH / 2 + ")");

        arcs.append("path")
                .style("fill", "#203974")
                .attr("d", function (d) {
                    return arcGenerator(d);
                });

        //绘制占比
        arcs.append("path")
                .data(piedataLeft)
                .attr("fill", status == COMPANINDICATOR_30 ? "#D16548" : "#3D5DE2")
                .attr("d", function (d) {
                    return arcGenerator(d);
                })
                .transition()
                .delay(function (d, i) {
                    return i * 400;
                })
                .duration(2000)
                .ease("linear")
                .attrTween('d', function (d) {
                    var i = d3.interpolate(d.startAngle, d.endAngle);
                    return function (t) {
                        d.endAngle = i(t);
                        return arcGenerator(d);
                    }
                });
    }

上面我有直接对其定义[{startAngle: 0, endAngle: Math.PI * 2}],因为我们需要先画第一个圆。svg1.selectAll("g").data(backGroundDataSet).enter().append("g")我添加g标签然后有定义了path绘制圆形图。

初始化swiper
 swiper = new Swiper('.swiper-container', {
            slidesPerView: 1,
            spaceBetween: 30,
            on: {
                init: function () { //Swiper初始化了
                    inventoryInit(COMPANINDICATOR_10);
                },
                slideChangeTransitionStart: function () {
                    var index = this.activeIndex;
                    var navBarBar = document.getElementById("tab_flag");
                    navBarBar.style.webkitTransform = 'translateX(' + index * 100 + '%)';//设置下标滑动
                    document.body.querySelector("#title ");
                    var a = document.getElementById("title");
                    del_ff(a);
                    if (this.activeIndex == 0) {
                        a.firstChild.style.color = 'red';
                        a.lastChild.style.color = 'white';
                        d3.select("#brandLeft01").select("svg").remove();
                        d3.select("#brandLeft02").select("svg").remove();
                        inventoryInit(COMPANINDICATOR_10);
                    } else {
                        a.firstChild.style.color = 'white';
                        a.lastChild.style.color = 'red';
                        d3.select("#brandLeft03").select("svg").remove();
                        d3.select("#brandLeft04").select("svg").remove();
                        inventoryInit(COMPANINDICATOR_20);
                    }
                }
            }
        });

swiper主要的作用是用来切换页面的。
注意!!!如果我们要删除我们画的圆需要这样做d3.select("#brandLeft01").select("svg").remove();//这句话的作用就是把brandLeft01里面的SVG给删除。
swiper里面的on在第一次加载的时候会调用。slideChangeTransitionStart用于滑动监听的作用
注意!!!我们在使用swiper的时候要定义宽高,如果出现swiper无法滑动的现象,你首先要检查某个地方是否出现了错误

点击标题切换页面
    function swiperClick(num){
        swiper.slideTo(num);
    }

所有代码如下
JS

<script type="text/javascript">
    var swiper;
    var COMPANINDICATOR_10 = "10";
    var COMPANINDICATOR_20 = "20";
    var COMPANINDICATOR_30 = "30";
    var COMPANINDICATOR_40 = "40";
    $(function () {
        swiper = new Swiper('.swiper-container', {
            slidesPerView: 1,
            spaceBetween: 30,
            on: {
                init: function () { //Swiper初始化了
                    inventoryInit(COMPANINDICATOR_10);
                },
                slideChangeTransitionStart: function () {
                    var index = this.activeIndex;
                    var navBarBar = document.getElementById("tab_flag");
                    navBarBar.style.webkitTransform = 'translateX(' + index * 100 + '%)';//设置下标滑动
                    document.body.querySelector("#title ");
                    var a = document.getElementById("title");
                    del_ff(a);
                    if (this.activeIndex == 0) {
                        a.firstChild.style.color = 'red';
                        a.lastChild.style.color = 'white';
                        d3.select("#brandLeft01").select("svg").remove();
                        d3.select("#brandLeft02").select("svg").remove();
                        inventoryInit(COMPANINDICATOR_10);
                    } else {
                        a.firstChild.style.color = 'white';
                        a.lastChild.style.color = 'red';
                        d3.select("#brandLeft03").select("svg").remove();
                        d3.select("#brandLeft04").select("svg").remove();
                        inventoryInit(COMPANINDICATOR_20);
                    }
                }
            }
        });
    });

    function swiperClick(num){
        swiper.slideTo(num);
    }

    function inventoryInit(status) {
        var innerRidus = 40;
        var outerRidus = 60;
        var circleSVGW = 200;
        var circleSVGH = 130;
        var datasetLeft = '';
        var datasetRight = '';
        var COL1 = 161.9, COL2 = 0.1, COL3 = 158.6, COL4 = 3.4, COL5 = 162;
        if (status == COMPANINDICATOR_10) {
            datasetLeft = COL1 / COL5 * 100;
            datasetRight = COL2 / COL5 * 100;
        } else {
            datasetLeft = COL3 / COL5 * 100;
            datasetRight = COL4 / COL5 * 100;
        }
        if (datasetLeft < 1) {
            datasetLeft = 1
        }
        if (datasetRight < 1) {
            datasetRight = 1
        }
        var arrLeft = [datasetLeft, (100 - datasetLeft)];
        var arrRight = [datasetRight, (100 - datasetRight)];

        //值访问器,可以将数据转换为角度
        var pie = d3.layout.pie().value(function (d) {
            return d;
        })
        var piedataLeft = pie(arrLeft);
        var piedataRight = pie(arrRight);

        //画第一个个圆
        if (status == COMPANINDICATOR_10) {//品牌分类
            d3CircleUtil(innerRidus, outerRidus, circleSVGW, circleSVGH, piedataLeft, '#brandLeft01', COMPANINDICATOR_30);
            d3CircleUtil(innerRidus, outerRidus, circleSVGW, circleSVGH, piedataRight, '#brandLeft02', COMPANINDICATOR_40);
        } else {//区域分类
            d3CircleUtil(innerRidus, outerRidus, circleSVGW, circleSVGH, piedataLeft, '#brandLeft03', COMPANINDICATOR_30);
            d3CircleUtil(innerRidus, outerRidus, circleSVGW, circleSVGH, piedataRight, '#brandLeft04', COMPANINDICATOR_40);

        }
    }

    /**
     * @date:2018/4/20 16:34
     * 功能: 画圆公共的代码
     * @innerRidus 内圆半径
     * @outerRidus 外圆半径
     * @circleSVGW SVG宽度
     * @circleSVGH SVG高度
     * @piedataLeft 数据源
     * @svgId 绘画到哪个ID上
     * @status 状态码
     */
    function d3CircleUtil(innerRidus, outerRidus, circleSVGW, circleSVGH, piedataLeft, svgId, status) {
        //创建弧生成器
        var arcGenerator = d3.svg.arc()
                .innerRadius(innerRidus)
                .outerRadius(outerRidus);

        //定义SVG的宽高
        var svg1 = d3.select(svgId)
                .append("svg")
                .attr("width", circleSVGW)
                .attr("height", circleSVGH);

        //添加G标签,移动到中心位置
        var backGroundDataSet = [{startAngle: 0, endAngle: Math.PI * 2}];//定义背景圆
        var arcs = svg1.selectAll("g")
                .data(backGroundDataSet)
                .enter()
                .append("g")
                .attr("transform", "translate(" + circleSVGW / 2 + "," + circleSVGH / 2 + ")");

        arcs.append("path")
                .style("fill", "#203974")
                .attr("d", function (d) {
                    return arcGenerator(d);
                });

        //绘制占比
        arcs.append("path")
                .data(piedataLeft)
                .attr("fill", status == COMPANINDICATOR_30 ? "#D16548" : "#3D5DE2")
                .attr("d", function (d) {
                    return arcGenerator(d);
                })
                .transition()
                .delay(function (d, i) {
                    return i * 400;
                })
                .duration(2000)
                .ease("linear")
                .attrTween('d', function (d) {
                    var i = d3.interpolate(d.startAngle, d.endAngle);
                    return function (t) {
                        d.endAngle = i(t);
                        return arcGenerator(d);
                    }
                });
    }

    function del_ff(elem) {
        var elem_child = elem.childNodes;
        for (var i = 0; i < elem_child.length;) {
            if (elem_child[i].nodeName == "#text" && !/\s/.test(elem_child.nodeValue)) {
                elem.removeChild(elem_child[i])
            }
            else {
                i++;
            }
        }
    }


</script>

css

 <style type="text/css">
        /*  body, html, #allmap {
              width: 100%;
              height: 100%;
              overflow: hidden;
              margin: 0;
              font-family: "微软雅黑";
          }*/

        #container {
            width: 100%;
            height: 100%;
            display: flex;
            display: -webkit-flex;
            flex-direction: column;
        }

        .empty {
            width: 100%;
            height: 110px;
            background: #B97A57;
        }

        .tab {
            width: 100%;
            height: 50px;
            display: flex;
            display: -webkit-flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            background: #000d38;
        }

        .tab_flag {
            width: 49%;
            height: 3px;
            line-height: 3px;
            text-align: center;
            position: relative;
        }

        .tab_bar_inner {
            background: red;
            height: 3px;
            width: 55%;
            line-height: 3px;
            margin: auto;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }

        .choseSpan {
            width: 49%;
            height: 40px;
            text-align: center;
            line-height: 40px;
            color: red;
        }

        .nochoseSpan {
            width: 49%;
            height: 40px;
            text-align: center;
            line-height: 40px;
            color: white;
        }

        .swiper-container {
            width: 100%;
            height: 150px;
        }

        .tab_circle {
            display: flex;
            display: -webkit-flex;
            flex-direction: column;
        }

        .circle {
            width: 100%;
            height: 130px;
            display: flex;
            display: -webkit-flex;
            flex-direction: row;
            justify-content: center;
        }

        .circle-left {
            flex: 1;
            height: 130px;
            display: flex;
            display: -webkit-flex;
            flex-direction: row;
            justify-content: center;
        }

        .circle-Right {
            flex: 1;
            height: 130px;
            display: flex;
            display: -webkit-flex;
            flex-direction: row;
            justify-content: center;
        }


    </style>

html

<body>

<div id="container">
    <div class="empty">

    </div>
    <div class="empty">

    </div>
    <div class="empty">

    </div>
    <div class="empty">

    </div>
    <div class="empty">

    </div>


    <div class="tab" id="title">
        <span class="choseSpan" onclick="swiperClick(0)">分类1</span>
        <span class="nochoseSpan" onclick="swiperClick(1) ">分类2</span>
    </div>
    <div class="tab_flag" id="tab_flag">
        <div class="tab_bar_inner"></div>
    </div>
    <!-- Swiper -->
    <div class="swiper-container">
        <div class="swiper-wrapper">
            <div class="swiper-slide tab_circle">
                <div class="circle">
                    <div class="circle-left" id="brandLeft01">

                    </div>
                    <div class="circle-Right" id="brandLeft02">

                    </div>
                </div>
                Slide 1
            </div>
            <div class="swiper-slide tab_circle">
                <div class="circle">
                    <div class="circle-left" id="brandLeft03">

                    </div>
                    <div class="circle-Right" id="brandLeft04">

                    </div>
                </div>
                Slide 2
            </div>
        </div>
    </div>
    <!--swipe-->

</div>

</body>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容