Options
All
  • Public
  • Public/Protected
  • All
Menu

Module data/imgLoad

Index

Enumerations

Interfaces

Functions

Functions

Const imgLoad

0.0.35 provide
  • web场景中预加载一组图片

    example

    load list img

    import { data } from 'onex-utils';
    
    const imgList = ['https://....png', 'https://....png'];
    data.imgLoad(imgList).then(() => {
     console.log(‘加载完成’)
    })
    .catch(() => {
      console.log('加载失败')
    })
    

    Parameters

    Returns Promise<void[]>

    预加载成功或者失败,是个Promise值