Paper.js ライブラリを調べています。チュートリアルの最初のコード例は問題なく動作します。しかし、2 番目のコード スニペットのように、インライン JavaScript を外部ファイルに移動すると、画面に何も表示されなくなります。myScript.jsで、試しました
paper.install(window);
window.onload = function() {
// Create a Paper.js Path to draw a line into it:
var path = new Path();
// Give the stroke a color
path.strokeColor = 'black';
var start = new Point(100, 100);
// Move to start and draw a line from there
path.moveTo(start);
// Note the plus operator on Point objects.
// PaperScript does that for us, and much more!
path.lineTo(start + [ 100, -50 ]);
}
そしてjQueryを使って
$(document).ready(function(){
// Create a Paper.js Path to draw a line into it:
var path = new Path();
// Give the stroke a color
path.strokeColor = 'black';
var start = new Point(100, 100);
// Move to start and draw a line from there
path.moveTo(start);
// Note the plus operator on Point objects.
// PaperScript does that for us, and much more!
path.lineTo(start + [ 100, -50 ]);
});
成功しませんでした。私は何を忘れましたか?助けてくれてありがとう