合伙人运营小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

image-viewer.wxs 228B

1234567
  1. function shouldLoadImage(index, currentIndex, loadedIndexes) {
  2. return Math.abs(index - currentIndex) <= 1 || (loadedIndexes && loadedIndexes.indexOf(index) !== -1);
  3. }
  4. module.exports = {
  5. shouldLoadImage: shouldLoadImage,
  6. };