1

我有一个高度为 480 的画布。我正在使用 Easeljs 在 canvas 中加载图像。每行包含 3 张图像。加载超出画布(480)高度的图像被隐藏。我需要添加垂直滚动条来查看这些图像。我该如何实现这一点。

谢谢,
沙迪亚

4

3 回答 3

4

以下是如何向画布添加垂直滚动条,允许在更大的图像上向上/向下滚动:http: //jsfiddle.net/m1erickson/a9KDB/

<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>

<style>
body{ background-color: ivory; }
div, canvas {
    position:absolute;
}
.wrapper {
    top:10px;
    left:10px;
    width: 300px;
    height: 300px;
    border: 2px solid black;
    margin:30px 0 2;
    overflow: hidden;
    background-color:green;
}
.vertical-scroll {
    left:320px;
    top:10px;
    border: 1px solid green;
    width: 20px;
    height: 300px;
}
.vertical-scroll div.bar {
    left:0px;
    top:0px;
    width: 20px;
    background-color: blue;
    height: 20px;
}
#mycanvas {
    left:0px;
    top:0px;
}

</style>

<script>
    $(function(){

        var canvas=document.getElementById("mycanvas");
        var ctx=canvas.getContext("2d");

        var wrapper;
        var canvasHeight;
        var vScrollHeight;
        var canvasWrapperHeight=300;

        $(".bar").draggable({
            containment: "parent"
        });

        $(".bar").on("drag", function (event, ui) {
            var ctop=(-ui.position.top * canvasHeight / canvasWrapperHeight);
            canvas.style.top = ctop + "px"
        });

        var img=new Image();
        img.onload=function(){
          canvas.width=this.width;
          canvas.height=this.height;
          canvasHeight=this.height;
          vbarHeight=canvasWrapperHeight*canvasWrapperHeight/canvasHeight;
          document.getElementById("vbar").style.height=vbarHeight+"px";
          ctx.drawImage(this,260,0,300,this.height,0,0,300,this.height);
        }
        img.src="http://sciencedude.blog.ocregister.com/files/2008/02/zot1-copy.jpg";

    }); // end $(function(){});
</script>

</head>

<body>
    <div class="wrapper" id="wrap1">
        <canvas id="mycanvas" width="300px" height="300px" />
    </div>
    <div class="vertical-scroll" id="vscroll">
        <div class="bar" id="vbar"></div>
    </div>
 </body>
</html>
于 2013-03-04T20:08:01.197 回答
1

用 div 包裹画布,然后为 div 设置高度,最后将属性应用到 div overflow-y:autooverflow-x: hidden

overflow-y:auto 需要时显示垂直滚动条 overflow-x: hidden隐藏水平滚动条

http://jsfiddle.net/V92Gn/3509/

   <div style="height:200px;width:480px; overflow-y:auto;overflow-x: hidden;">
      <canvas id="canvas" style="background:navy" width="480" height="820"></canvas>
    </div>
于 2015-09-11T00:52:25.117 回答
0

我不知道 EaselJS 的任何 ScrollBar-Solutions 并且不可能通过 HTML 做到这一点。所以你必须编写你自己的滚动条,如果你有问题,应该有相当多的教程可以在线找到ActionScript3,你可以很容易地适应EaselJS。

另一种选择是扩展画布本身的高度并向其父容器添加滚动条,但我不确定这是否是一个非常好的解决方案。

于 2013-03-04T15:33:24.870 回答