上下左右に並べても継ぎ目が出ない繰り返し模様の絵。壁紙素材として敷き詰められる。
使いどころ: 背景素材やパターン画像を作りたいときに指定する。
同じ分類のタグ 形式
Danbooru の英語定義
Posts composed of a pattern that, if cropped correctly and used as a "tiled" background, will repeat seamlessly with no visible edges. The following JavaScript snippet can be useful to check whether an image is tileable without further cropping. Running it on the post page will replace the page with only the image repeated in a 3×3 grid: let {fileUrl, width, height} = document.querySelector('.image-container').dataset; document.body.outerHTML = '<body style="background:url(\''+fileUrl+'\') repeat; min-width:'+(width*3)+'px; min-height:'+(height*3)+'px;"></body>'