枫谷剑仙

Results 191 comments of 枫谷剑仙

Known issues. Browser do not have a screenshot API. Screenshot is draw by **html2canvas** library , it is work like re-implement browser rendering. It's so complex, there are a lot...

I don't know why, I set an opacity so that the icons can be drawn. But for other html2canvas bugs I didn't find a compatible solution. ![firefox_q10fKJUmsw](https://github.com/Mapaler/PADDashFormation/assets/6565860/72efc9c0-70a3-4b61-98ea-7aba8fb4a94d) ![智龙迷城1人队伍图制作](https://github.com/Mapaler/PADDashFormation/assets/6565860/df4e4dfc-2fda-415c-a89f-5daee7dcd0b7)

这个也搞得太复杂了吧 而且我也看不懂,对Winwods层面的我不了解。 但是能看出您是JScript高手,需要指出的是 JScript != JavaScript 。

> > Sometimes shadow bans block access to exhentai for that account permanently.有时,影子禁令会永久阻止该帐户访问 exhentai。 > > Not that I know of. Just make sure you've cleared those cookies before trying...

我也就是业余爱好,只能写业务代码,没能力也没动力去研究库源码的。 内置截图对于我自身的想法不必要,只是有些用户不知道用浏览器截图非要这个。 本来我是准备使用 svg sprite,custom element (shadow root)这些技术的,但浏览器不允许绘制。为了兼容内置截图只好一直搁置这些功能的改造。

> 用爱发电不容易,最好尽可能节省大家的时间 我从没插过广告,也是用爱发电。

没能完全复现,但是发现把这里的 inline-flex; 改成 flex; 就有图像了,但是我的布局还是用 inline-flex; 好一些。 ![firefox_4000日1队全奖励_-_智龙迷城1人队伍图制作_—_Firefox_Developer_Editi_0318](https://github.com/user-attachments/assets/93bf2530-6ebe-4585-8da3-7e802467af40)

![firefox_Firefox_Developer_Edition_0320](https://github.com/user-attachments/assets/7db94f18-0fb0-494a-a6c2-e8b25e231610) ```html .ul1 { display: inline-flex; list-style-type: none; } .ul1 li { color: red; font-size: 20px; font-weight: bold; -webkit-text-stroke: 1px blue; } .ul2 { display: flex; list-style-type: none; } .ul2...

![firefox_Firefox_Developer_Edition_0322](https://github.com/user-attachments/assets/6f865695-81df-4402-9cd7-bc8e24e3aa95) 交换一个顺序就会导致画面不一样,应该是对inline类块的处理不好。

如果你是说符合这两个条件的都不下载,那么应该用 OR 而不是 AND,AND 表示必须同时符合这两个条件的才**不下载**。 ```js illust.id > 123456789 || illust.tags.every(t=>t.name!="vindictus") ``` 下载当前作品功能可以在控制台显示当前作品的数据内容,最好看一看实际的标签名是什么,很多是日文的。 ![firefox_#POP_インク先生_-_POP的插画_-_pixiv_—_Mozilla_Firefox_0662](https://github.com/user-attachments/assets/503c1610-a757-4b9c-9b65-dcbd58abe83a) 如果确实是英文,为了避免大小写问题,最好也用带`i`参数的正则表达式来测试。 你希望下载"vindictus"标签,所以需要排除每一个标签都不是"vindictus"。其实相当于任意一个标签是"vindictus"的取反,所以写成 some 取反更好理解? ```js illust.id > 123456789 || !illust.tags.some(t=>/vindictus/i.test(t.name)) ``` 如果你希望过滤器只筛选你需要的,可以对代码整体取反。比如如下代码表示对 id < 123456789 ,并且同时有“vindictus”标签的...