kineticjs文本溢出行为

时间:2013-12-17 04:07:09

标签: javascript html5 kineticjs

使用kineticjs时,如何使用overflow:hidden模拟具有指定高度和宽度的div框的行为,当文本超出div框的高度时,剩余的文本将被隐藏。

请参阅http://jsfiddle.net/8t9QV/,当我的身高设置为1时,第一行“复杂文字”仍会显示?!

kinetic.Text中高度和宽度的行为是什么?

1 个答案:

答案 0 :(得分:2)

您可以将文本放在Kinetic.Group容器中,然后设置该组的clip属性,以防止文本溢出组外:

enter image description here

这是代码和小提琴:http://jsfiddle.net/m1erickson/M5m8P/

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Prototype</title>
    <script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
    <script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.7.2.min.js"></script>

<style>
body{padding:20px;}
#container{
  border:solid 1px #ccc;
  margin-top: 10px;
  width:350px;
  height:350px;
}
</style>        
<script>
$(function(){

    var stage = new Kinetic.Stage({
        container: 'container',
        width: 350,
        height: 350
    });
    var layer = new Kinetic.Layer();
    stage.add(layer);

    var group=new Kinetic.Group({
        width:100,
        height:50,
        clip:[0,0,100,50]
    });
    layer.add(group);

    var rect= new Kinetic.Rect({
        x:0,
        y:0,
        width:group.getWidth(),
        height:group.getHeight(),
        fill:"skyblue"
    });
    group.add(rect);

    var text = new Kinetic.Text({
        x:5,
        y:20,
        text:"Rudolph the Red Nosed Reindeer...",
        fill: 'red',
    });
    group.add(text);

    layer.draw();




    $("#myButton").click(function(){});


}); // end $(function(){});

</script>       
</head>

<body>
    <button id="myButton">Button</button>
    <div id="container"></div>
</body>
</html>