Git Product home page Git Product logo

Comments (1)

Okysu avatar Okysu commented on July 23, 2024

一些资源我都是放置在public文件夹下的
├── favicon.ico
├── images
│ ├── *.webp 图片资源得按照顺序来从1-N;
└── video
├── home_v.webm 大屏设备的视频
└── home_v_m.webm 移动端小屏幕设备的视频

然后在app/images/page.tsx下进行修改,在第六行附近

function ImageGallery() {
  const maxIndex = 184;

  return (
    <MasonryLayout>
      {Array.from(Array(maxIndex).keys()).map((index) => (
        <ImagePreview key={index} src={`./images/${index + 1}.webp`} />
      ))}
    </MasonryLayout>
  );
}

maxIndex改成你存放的图片数量

麻烦二次修改的时候并公开发布的时候,请@我并注明修改内容(这是MIT协议要求的)

from izhong-site.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.