我刚开始学习 d3.js 库。我需要制作一个 svg 编辑器,我教过使用这个编辑器是个好主意。我有一个问题,我写了一些函数,我希望这些函数在单击鼠标时运行。
这些函数创建了一条从 A 点到 B 点的线,所以我只需要在单击 Line 按钮时调用这些函数。
这是代码块:
var line;
var container = d3.select("body").append("svg")
.on('mousedown',mousedown)
.on('mouseup',mouseup);
function mousedown() {
var coordinates = d3.mouse(this);
line = container.append("line")
.attr("x1", coordinates[0])
.attr("y1", coordinates[1])
.attr("x2", coordinates[0])
.attr("y2", coordinates[1]);
container.on("mousemove", mousemove);
};
function mousemove(){
var coordinates = d3.mouse(this);
line.attr("x2", coordinates[0])
.attr("y2", coordinates[1]);
};
function mouseup(){
container.on("mousemove", null);
};
html
<button id="lineBtn">Line</button>
CSS
line {
stroke: black;
stroke-width: 3px;
}
svg{
border:1px solid black;
width:500px;
height:500px;
margin-left: 40%;
margin-right:40%;
}
最佳答案
根据您的comment ,问题在于您处理按钮的方式:
document.getElementById("lineBtn").onclick = function drawLine(){
mousedown();
mousemove();
mouseup();
};
您不能像这样调用这些函数有几个原因,但主要是因为没有 this 传递给 d3.mouse,因此没有源事件。
更好的方法是使用按钮设置正确的监听器,如下所示:
d3.select("#lineBtn").on("click", function() {
container.on('mousedown', mousedownLine)
.on('mouseup', mouseupLine);
});
d3.select("#circleBtn").on("click", function() {
container.on('mousedown', mousedownCircle)
.on('mouseup', mouseupCircle);
});
这是一个演示(使用 D3 v5,在这个问题上与您的 v3 没有什么不同):
var line;
var circle;
var container = d3.select("body").append("svg");
d3.select("#lineBtn").on("click", function() {
container.on('mousedown', mousedownLine)
.on('mouseup', mouseupLine);
});
d3.select("#circleBtn").on("click", function() {
container.on('mousedown', mousedownCircle)
.on('mouseup', mouseupCircle);
});
function mousedownLine() {
container.on("mousemove", mousemoveLine);
var coordinates = d3.mouse(this);
line = container.append("line")
.attr("x1", coordinates[0])
.attr("y1", coordinates[1])
.attr("x2", coordinates[0])
.attr("y2", coordinates[1]);
};
function mousemoveLine() {
var coordinates = d3.mouse(this);
line.attr("x2", coordinates[0])
.attr("y2", coordinates[1]);
};
function mouseupLine() {
container.on("mousemove", null);
};
function mousedownCircle() {
container.on("mousemove", mousemoveCircle);
var coordinates = d3.mouse(this);
circle = container.append("circle")
.attr("cx", coordinates[0])
.attr("cy", coordinates[1]);
};
function mousemoveCircle() {
var coordinates = d3.mouse(this);
circle.attr("r", Math.hypot(coordinates[0] - circle.attr("cx"), coordinates[1] - circle.attr("cy")));
};
function mouseupCircle() {
container.on("mousemove", null);
};line {
stroke: teal;
stroke-width: 2px;
}
circle {
stroke: tomato;
fill: none;
stroke-width: 2px;
}
svg {
border: 1px solid black;
width: 500px;
height: 300px;
}<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min.js"></script>
<button id="lineBtn">Line</button>
<button id="circleBtn">Circle</button>
关于javascript - 无法读取事件监听器中 null 的属性 'sourceEvent',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27567677/
我正在尝试测试是否存在表单。我是Rails新手。我的new.html.erb_spec.rb文件的内容是:require'spec_helper'describe"messages/new.html.erb"doit"shouldrendertheform"dorender'/messages/new.html.erb'reponse.shouldhave_form_putting_to(@message)with_submit_buttonendendView本身,new.html.erb,有代码:当我运行rspec时,它失败了:1)messages/new.html.erbshou
我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
我正在寻找执行以下操作的正确语法(在Perl、Shell或Ruby中):#variabletoaccessthedatalinesappendedasafileEND_OF_SCRIPT_MARKERrawdatastartshereanditcontinues. 最佳答案 Perl用__DATA__做这个:#!/usr/bin/perlusestrict;usewarnings;while(){print;}__DATA__Texttoprintgoeshere 关于ruby-如何将脚
我希望我的UserPrice模型的属性在它们为空或不验证数值时默认为0。这些属性是tax_rate、shipping_cost和price。classCreateUserPrices8,:scale=>2t.decimal:tax_rate,:precision=>8,:scale=>2t.decimal:shipping_cost,:precision=>8,:scale=>2endendend起初,我将所有3列的:default=>0放在表格中,但我不想要这样,因为它已经填充了字段,我想使用占位符。这是我的UserPrice模型:classUserPrice回答before_val
我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在
我在我的项目中添加了一个系统来重置用户密码并通过电子邮件将密码发送给他,以防他忘记密码。昨天它运行良好(当我实现它时)。当我今天尝试启动服务器时,出现以下错误。=>BootingWEBrick=>Rails3.2.1applicationstartingindevelopmentonhttp://0.0.0.0:3000=>Callwith-dtodetach=>Ctrl-CtoshutdownserverExiting/Users/vinayshenoy/.rvm/gems/ruby-1.9.3-p0/gems/actionmailer-3.2.1/lib/action_mailer
我有一个包含模块的模型。我想在模块中覆盖模型的访问器方法。例如:classBlah这显然行不通。有什么想法可以实现吗? 最佳答案 您的代码看起来是正确的。我们正在毫无困难地使用这个确切的模式。如果我没记错的话,Rails使用#method_missing作为属性setter,因此您的模块将优先,阻止ActiveRecord的setter。如果您正在使用ActiveSupport::Concern(参见thisblogpost),那么您的实例方法需要进入一个特殊的模块:classBlah
我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r
在MRIRuby中我可以这样做:deftransferinternal_server=self.init_serverpid=forkdointernal_server.runend#Maketheserverprocessrunindependently.Process.detach(pid)internal_client=self.init_client#Dootherstuffwithconnectingtointernal_server...internal_client.post('somedata')ensure#KillserverProcess.kill('KILL',