Skip to content

Latest commit

 

History

History
82 lines (60 loc) · 1.83 KB

README.md

File metadata and controls

82 lines (60 loc) · 1.83 KB

Netlify Status

Résumé website powered by VitePress, with a little bit of modification and customization.

Get Started with VitePress

Install the VitePress npm package:

npm add -D vitepress

Create a new VitePress project:

npx vitepress init

Start the project in dev mode:

npm run docs:dev

Read the full documentation of VitePress here.

Click to Enlarge Images

Currently, VitePress does not support clicking to enlarge images out of the box. To achieve a simple effect, follow the steps below:

  1. Install the medium-zoom library:
npm add medium-zoom
  1. In .vitepress/theme/index.ts, import the relevant functions and add a setup function:
// import ...
import { onMounted, watch, nextTick } from "vue";
import { useRoute } from "vitepress";
import mediumZoom from "medium-zoom";

export default {
  // ...
  setup() {
    const route = useRoute();
    const initZoom = () => {
      // change margin and background to your liking
      mediumZoom(".main img", { margin: 50, background: "rgba(0, 0, 0, 0.5)" });
    };
    onMounted(() => {
      initZoom();
    });
    watch(
      () => route.path,
      () => nextTick(() => initZoom()),
    );
  },
} satisfies Theme;
  1. Create a custom CSS file, e.g. .vitepress/theme/custom.css, and add in the following rules:
.medium-zoom-image {
  z-index: 9999 !important;
}

.medium-zoom-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998 !important;
}

You can remove backdrop-filter if you don't like it.

Note

For some reason, the images are blurred on Safari.