new4u / ViSearch

Beyond the ChatGPT/AI with eyes... Google of Google
4 stars 0 forks source link

ViSearch/googleData 0.15 googleParse 2023-1-28 08:39:40 #28

Closed new4u closed 1 year ago

new4u commented 1 year ago
new4u commented 1 year ago
  • 10点14分 可以跑通parse google的搜索结果网页了,还有一些没有parse到
new4u commented 1 year ago
new4u commented 1 year ago
  • 21点31分 用文字调试

1.发现还是searchtext.✔ 2.发现文字看不清楚 2.1字没有背景,修改css ✔ 2.12 08点10分 改成实心的描边 2.2字太小是否可以修改 2.3 发现修改了san的字体为连接数量,但是没有用 2,3,1 用鼠标详细梳理一下

new4u commented 1 year ago
  • 2023年1月30日15点36分 解决了key,san的连接问题, 想添加一个功能,就是点击任意一个node与之不相邻的node变暗
node.on("click", function (d) {
  var adjacentNodes = getAdjacentNodes(d);

  node.style("opacity", function (nodeData) {
    return adjacentNodes.includes(nodeData) ? 1 : 0.1;
  });

  link.style("opacity", function (linkData) {
    return adjacentNodes.includes(linkData.source) && adjacentNodes.includes(linkData.target) ? 1 : 0.1;
  });
});

function getAdjacentNodes(nodeData) {
  var adjacentNodes = [];
  graph.links.forEach(function (linkData) {
    if (linkData.source === nodeData) {
      adjacentNodes.push(linkData.target);
    } else if (linkData.target === nodeData) {
      adjacentNodes.push(linkData.source);
    }
  });
  return adjacentNodes;
}