したらばTOP ■掲示板に戻る■ 全部 1-100 最新50 | |
レス数が1スレッドの最大レス数(1000件)を超えています。残念ながら投稿することができません。

chaika 2chAPI対応パッチスレ ★4

662名無しさん:2020/07/28(火) 00:55:31 ID:Wz3cDzpQ0
レガシーFiregesturesで使っていた公式配布の「画像を拡大(縮小)する」スクリプトがFiregestures2.0.1では使えなくなってるのですが
どこか書き換えれば動作するようになるのでしょうか
以下使っていた「画像を拡大する」スクリプトです

const SCALE = 1.5;

var node = FireGestures.sourceNode;
if (!(node instanceof HTMLImageElement))
return;
if (!node.hasAttribute("width"))
node.setAttribute("width", node.naturalWidth);
if (!node.hasAttribute("height"))
node.setAttribute("height", node.naturalHeight);
if (!node.hasAttribute("originalWidth")) {
node.setAttribute("originalWidth", node.width);
node.setAttribute("originalHeight", node.height);
}
node.width = node.width * SCALE;
node.height = node.height * SCALE;




掲示板管理者へ連絡 無料レンタル掲示板