gpt4 book ai didi

javascript - 六边形上的 HTML5 图像未加载图像,而是绘制黑色六边形

转载 作者:行者123 更新时间:2023-11-28 01:30:22 26 4
gpt4 key购买 nike

我最近一直在玩 HTML5 Canvas ,并尝试将图像绘制到六边形上。我一直在使用 KineticJS 来执行此操作,以下是我正在使用的代码

<!DOCTYPE html>
<html>
<head>
<title>HTML5 Request System</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="kinetic-v5.0.1.min.js"></script>
</head>

<body>
<div id="container">
</div>

<script>
var stage = new Kinetic.Stage({
container: 'container',
width: 578,
height: 600
});
var layer = new Kinetic.Layer();

logo = new Image();
logo.onload = function() {
var hexagon = new Kinetic.RegularPolygon({
x: stage.width()/2,
y: stage.height()/2,
sides: 6,
radius: 200,
fill: {image: logo},
stroke: 'black',
});

// add the shape to the layer
layer.add(hexagon);

// add the layer to the stage
stage.add(layer);
};
logo.src = "https://hiveradio.net/api/icebreath/?func=get&mod=cover&artist=NIIC";
</script>
</body>
</html>

它绘制了一个黑色六边形,但上面没有图像,非常欢迎任何帮助。

谢谢

利亚姆

最佳答案

使用fillPatternImage而不是fill:

var hexagon = new Kinetic.RegularPolygon({
x: stage.width()/2,
y: stage.height()/2,
sides: 6,
radius: 200,
fillPatternImage: logo,
fillPatternOffset: {x:250, y:250},
stroke: 'black',
});

http://jsfiddle.net/z5pLF/3/

关于javascript - 六边形上的 HTML5 图像未加载图像,而是绘制黑色六边形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22191137/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com