- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
之前我使用 svg
构建了一个运动路径,但发现在移动设备上的渲染性能不是很好。我决定将运动路径转换为 canvas
,这会给我带来更好的性能。
我选择使用 svg
创建我的 canvas
路径的克隆,这样我就可以使用 getPointAtLength()
和 getTotalLength ()
方法获取采样点对应的x、y值和canvas的长度
路径。
问题是使用 getPointAtLength
采样后返回的值似乎会导致不规则旋转。
我有一种预感,这与我使用 getPointAtLength()
方法沿路径采样的位置差异有关。
如何修复从 atan2
返回的值,使其沿着路径平滑线性旋转?
var canvas = document.body.querySelector('.loader__canvas');
var source = document.body.querySelector('.loader__source');
var ctx = canvas.getContext("2d");
var angle;
var speed = 0.5;
var deltaX;
var deltaY;
var nextCoords;
var prevCoords;
var offset = 0;
var distance = source.getTotalLength();
render();
function render() {
// Reset the loop once offset exceeds the path's distance
if (offset >= distance) {
offset = 1 * speed;
} else {
offset += 1 * speed;
}
// Clear the canvas from all previous operations
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Draw the loop that the object is attached to
ctx.beginPath();
ctx.lineWidth = 10;
ctx.moveTo(250, 250);
ctx.lineTo(250, 300);
ctx.arc(300, 300, 50, Math.PI, -Math.PI / 2, true);
ctx.lineTo(200, 250);
ctx.arc(200, 200, 50, Math.PI / 2, 0);
ctx.lineTo(250, 250);
ctx.strokeStyle = '#ddd';
ctx.stroke();
ctx.closePath();
// Save the current transformation matrix for future reset
ctx.save();
// Calculate coordinates and angle for the object,
// if prevCoords is undefined: assign initial values
prevCoords = nextCoords || source.getPointAtLength(offset);
nextCoords = source.getPointAtLength(offset);
angle = Math.atan2(
(nextCoords.y - prevCoords.y), (nextCoords.x - prevCoords.x)
) + (Math.PI / 2);
// Apply transforms
ctx.translate(nextCoords.x, nextCoords.y);
ctx.rotate(angle);
// Draw path object
ctx.beginPath();
ctx.arc(0, 0, 20, 0, Math.PI);
ctx.fillStyle = '#f63';
ctx.fill();
ctx.closePath();
// Restore transforms
ctx.restore();
// Loop
requestAnimationFrame(render);
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.loader__canvas {
display: block;
width: 100%;
max-width: 500px;
max-height: 500px;
margin: auto;
border: 1px solid #ccc;
}
.loader__source {
fill: transparent;
stroke: #ddd;
stroke-width: 10;
}
<canvas class="loader__canvas" width="500" height="500">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500">
<path class="loader__source" d="m250,250v50a50,50,0,1,0,50,-50h-100a50,50,0,1,1,50,-50z" />
</svg>
</canvas>
在Blindman67's answer的帮助和建议下,我结合 prevCoords 上的 %
运算符增加了偏移量。 Math.atan2()
现在似乎工作正常并且沿路径的旋转很平滑。
但是我想知道为什么偏移量为 1 会导致如此大的振荡而偏移量为 10 却不会?
var canvas = document.body.querySelector('.loader__canvas');
var source = document.body.querySelector('.loader__source');
var ctx = canvas.getContext("2d");
var angle;
var speed = 5;
var deltaX;
var deltaY;
var offset = 0;
var nextCoordsPlug;
var prevCoordsPlug;
var nextCoordsSocket;
var prevCoordsSocket;
var distance = source.getTotalLength();
render();
function render() {
// Reset the loop once offset exceeds the path's distance
if (offset >= distance) {
offset = 1 * speed;
} else {
offset += 1 * speed;
}
// Clear the canvas from all previous operations
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.setLineDash([source.getTotalLength() - 50, 50]);
ctx.lineDashOffset = -(offset + 40);
// Draw the loop that the object is attached to
ctx.beginPath();
ctx.lineWidth = 20;
ctx.moveTo(250, 250);
ctx.lineTo(250, 300);
ctx.arc(300, 300, 50, Math.PI, -Math.PI / 2, true);
ctx.lineTo(200, 250);
ctx.arc(200, 200, 50, Math.PI / 2, 0);
ctx.lineTo(250, 250);
ctx.strokeStyle = '#f63';
ctx.stroke();
ctx.closePath();
// Save the current transformation matrix for future reset
ctx.save();
// Calculate coordinates and angle for the object,
// use the remainder to extend the point past the distance
prevCoordsPlug = source.getPointAtLength((offset + 10) % distance);
nextCoordsPlug = source.getPointAtLength(offset);
angle = Math.atan2(
(nextCoordsPlug.y - prevCoordsPlug.y), (nextCoordsPlug.x - prevCoordsPlug.x)
) - (Math.PI / 2);
// Apply transforms
ctx.translate(nextCoordsPlug.x, nextCoordsPlug.y);
ctx.rotate(angle);
// Draw path object
ctx.beginPath();
ctx.arc(0, 0, 20, 0, Math.PI);
ctx.rect(-12, -20, 8, 20);
ctx.rect(4, -20, 8, 20);
ctx.fillStyle = '#f63';
ctx.fill();
ctx.closePath();
// Restore and save previous transforms
ctx.restore();
ctx.save();
prevCoordsSocket = source.getPointAtLength((offset + 45) % distance);
nextCoordsSocket = source.getPointAtLength((offset + 35) % distance);
angle = Math.atan2(
(nextCoordsSocket.y - prevCoordsSocket.y), (nextCoordsSocket.x - prevCoordsSocket.x)
) + (Math.PI / 2);
// Apply transforms
ctx.translate(nextCoordsSocket.x, nextCoordsSocket.y);
ctx.rotate(angle);
// Draw path object
ctx.beginPath();
ctx.arc(0, 0, 20, 0, Math.PI);
ctx.fillStyle = '#f63';
ctx.fill();
ctx.closePath();
// Restore transforms
ctx.restore();
// Loop
requestAnimationFrame(render);
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.loader__canvas {
display: block;
width: 100%;
max-width: 500px;
max-height: 500px;
margin: auto;
transform: rotate(-45deg) translateZ(0);
}
.loader__source {
fill: transparent;
stroke: #ddd;
stroke-width: 10;
}
<canvas class="loader__canvas" width="500" height="500">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500">
<path class="loader__source" d="m250,250v50a50,50,0,1,0,50,-50h-100a50,50,0,1,1,50,-50z" />
</svg>
</canvas>
最佳答案
像素位置
我不确定为什么会这样,尽管我使用了一些有缺陷的逻辑并意外地找到了解决方案。为了解决这个问题,找到距离偏移更远的点。我添加了 4 个像素并获得了之前的位置 prevCoords = source.getPointAtLength((offset + 4) % distance);
我向前看以确保负偏移不会搞乱开始。
即使移动偏移量,方向仍然有点粗糙。所以我为 Angular 添加了一个简单的平滑算法。保留一个单独的值 angleReal
以显示平滑的 Angular 和一个 angleDelta
以平滑运动。有一个 drag
和 acceleration
组件决定了行为。不同的值会影响平滑。如果 drag
的值超过 0.5,平滑将开始振荡(有时效果不错,但在这种情况下不需要)
还有一个问题是 atan2
返回 Angular -Math.PI
到 Math.PI
平滑看到 -Math .PI
和 Math.PI
作为两个不同的 Angular ,但它们是相同的所以我添加了一个测试以确保从 -Math.PI
的过渡Math.PI
没有使对象平滑旋转。
下面是你的代码,我修改了一些位来平滑对象方向。它不是唯一的解决方案,但它是我用于动画的解决方案。
更新
在进一步调查中,我发现函数 getPointAtLength
有问题。
使用以下代码(在您的代码上下文中),我将 getTotalLength
给出的距离与使用 getPointAtLength
var distance = source.getTotalLength(); // get the distance along the path;
var next; // next point
var dist = 0; // the measured distance
var step = 1; // path sample rate
var last = source.getPointAtLength(0); // get the first point
for(var i = step; i < distance; i+= step){ // sample points
next = source.getPointAtLength(i); // get a point at offset i
// get and sum the distance between the two samples
dist += Math.sqrt(Math.pow(next.x-last.x,2)+Math.pow(next.y-last.y,2));
last = next; // move the current sample to the last
}
// sample the last remaining bit
next = source.getPointAtLength(distance);
// add that distance.
dist += Math.sqrt(Math.pow(next.x-last.x,2)+Math.pow(next.y-last.y,2));
// show result
console.log("Measured:"+dist.toFixed(2)+" Given:"+distance.toFixed(2))
1、0.1、0.01采样结果
source.getTotalLength()
给出的距离是 671.31。
人们预计误差会随着采样距离的减少而减少,但它会增加,强烈指向函数“getPointAtLength”中的错误,并会解释您在计算方向时的不准确性。函数 getPointAtLength
没有返回路径上的精确点。
var canvas = document.body.querySelector('.loader__canvas');
var source = document.body.querySelector('.loader__source');
var ctx = canvas.getContext("2d");
var angle;
// Blindman67 change start---------------------------------
var angleReal;
var angleDelta;
var drag = 0.1;
var acceleration = 0.9;
// Blindman67 change end---------------------------------
var speed = 0.5;
var deltaX;
var deltaY;
var nextCoords;
var prevCoords;
var offset = 0;
var distance = source.getTotalLength();
render();
function render() {
// Reset the loop once offset exceeds the path's distance
if (offset >= distance) {
offset = 1 * speed;
} else {
offset += 1 * speed;
}
// Clear the canvas from all previous operations
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Draw the loop that the object is attached to
ctx.beginPath();
ctx.lineWidth = 10;
ctx.moveTo(250, 250);
ctx.lineTo(250, 300);
ctx.arc(300, 300, 50, Math.PI, -Math.PI / 2, true);
ctx.lineTo(200, 250);
ctx.arc(200, 200, 50, Math.PI / 2, 0);
ctx.lineTo(250, 250);
ctx.strokeStyle = '#ddd';
ctx.stroke();
ctx.closePath();
// Save the current transformation matrix for future reset
ctx.save();
// Calculate coordinates and angle for the object,
// if prevCoords is undefined: assign initial values
// Blindman67 change start---------------------------------
// get the offset a larger pixel distance
prevCoords = source.getPointAtLength((offset+4)%distance);
// Blindman67 change end ---------------------------------
nextCoords = source.getPointAtLength(offset);
angle = Math.atan2(
(nextCoords.y - prevCoords.y), (nextCoords.x - prevCoords.x)
) + (Math.PI / 2);
// Blindman67 change start---------------------------------
if(angleDelta === undefined){ // if not set set up init vals
angleDelta = 0;
angleReal = angle;
}
if(Math.abs(angle-angleReal) > Math.PI){
angleReal = angle;
}
// add smoothing to the angle
angleDelta += (angle-angleReal)*acceleration;
angleDelta *= drag;
angleReal += angleDelta;
// Apply transforms
ctx.translate(nextCoords.x, nextCoords.y);
ctx.rotate(angleReal+Math.PI);
// Blindman67 change end ---------------------------------
// Draw path object
ctx.beginPath();
ctx.arc(0, 0, 20, 0, Math.PI);
ctx.fillStyle = '#f63';
ctx.fill();
ctx.closePath();
// Restore transforms
ctx.restore();
// Loop
requestAnimationFrame(render);
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.loader__canvas {
display: block;
width: 100%;
max-width: 500px;
max-height: 500px;
margin: auto;
border: 1px solid #ccc;
}
.loader__source {
fill: transparent;
stroke: #ddd;
stroke-width: 10;
}
<canvas class="loader__canvas" width="500" height="500">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500">
<path class="loader__source" d="m250,250v50a50,50,0,1,0,50,-50h-100a50,50,0,1,1,50,-50z" />
</svg>
</canvas>
关于javascript - Canvas + SVG 路径中的 Atan2 旋转卡顿,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34233288/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!