0

「ドメインポリシー」の制限を受け続けているため、Paper.js の jsfiddle を作成する方法がわかりません。ただし、ここに移動して実行をクリックすることでテストできます: http://paperjs.org/tutorials/animation/creating-animations/#moving-multiple-items

次のコードがあります。

// The amount of circles we want to make:
var count = 50;

// Create a symbol, which we will use to place instances of later:
var point = new Point(20, 20);
var size = new Size(60, 60);

var path = new Path.Rectangle({
    point: point,
    size: size,
    fillColor: 'grey',
    strokeColor: 'black'
});

var symbol = new Symbol(path);

// Place the instances of the symbol:
for (var i = 0; i < count; i++) {
    // The center position is a random point in the view:
    var center = Point.random() * view.size;
    var placedSymbol = symbol.place(center);
    var placedSymbol = symbol.place(center);
    placedSymbol.scale(i / count);

    if (i % 5 == 0) {
        placedSymbol.style = {
            fillColor: new Color(1, 0, 0),
            strokeColor: 'black',
            strokeWidth: 5
        };
    }
}

console.log(project.activeLayer.children[0]);

// The onFrame function is called up to 60 times a second:
function onFrame(event) {
    // Run through the active layer's children list and change
    // the position of the placed symbols:
    for (var i = 0; i < count; i++) {
        var item = project.activeLayer.children[i];

        // Move the item 1/20th of its width to the right. This way
        // larger circles move faster than smaller circles:
        item.position.x += item.bounds.width / 100;

        //if (i % 5 == 0)
            //item.fillColor = new Color(1, 0, 0);

        // If the item has left the view on the right, move it back
        // to the left:
        if (item.bounds.left > view.size.width) {
            item.position.x = -item.bounds.width;
        }
    }
}

次のようにパスの色を変更できることはわかっています。

var path = new Path.Rectangle({
    point: point,
    size: size,
    fillColor: 'grey',
    strokeColor: 'black'
});

しかし、 5で割り切れる特定の長方形のみの色を変更したい:

if (i % 5 == 0) {
    placedSymbol.style = {
        fillColor: new Color(1, 0, 0),
        strokeColor: 'black',
        strokeWidth: 5
    };
}

ただし、塗りつぶしの色は決して変わりません。特定のシンボルのみの塗りつぶしの色/スタイルを変更する適切な方法は何ですか?

4

2 に答える 2

1

私にとっての答えは、シンボルをまったく使用せず、次のようなパスを使用することでした。

// The amount of circles we want to make:
var count = 150;

// Create a symbol, which we will use to place instances of later:


// Place the instances of the symbol:
for (var i = 0; i < count; i++) {
    // The center position is a random point in the view:
    var path = new Path.Circle({
        center: Point.random() * view.size,
        radius: i / count + 0.5,
        fillColor: 'white',
        strokeColor: 'black'
    });
    if (i % 10 == 0)
        path.style.fillColor = '#eee';
}

// The onFrame function is called up to 60 times a second:
function onFrame(event) {
    // Run through the active layer's children list and change
    // the position of the placed symbols:
    for (var i = 0; i < count; i++) {
        var item = project.activeLayer.children[i];

        // Move the item 1/20th of its width to the right. This way
        // larger circles move faster than smaller circles:
        item.position.x += item.bounds.width / 300;

        // If the item has left the view on the right, move it back
        // to the left:
        if (item.bounds.left > view.size.width) {
            item.position.x = -item.bounds.width;
        }
    }
}
于 2013-09-09T16:31:13.607 に答える
0

これは複製です。あちらで誰かが正しい答えを出しました:

これは仕様によるものです。Symbol のインスタンスのビジュアル プロパティを変更することはできません。アイテムの色を変更するには、path.clone() を使用してパスの複数のコピーを作成できます。

于 2016-10-29T13:09:50.360 に答える