vuepress-theme-aurora
Version:
A vuepress-based animation blog theme, simple, beautiful, multi-color, multiple custom functions, providing article poster sharing, talk, photo album, comment and other features 一个基于vuepress的动漫类博客主题,简洁,漂亮,多色彩,多种自定义功能,提供文章海报分享,说说,相册,评论等特色功�?
20 lines (19 loc) • 792 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolveMediumZoomPluginOptions = void 0;
/**
* Resolve options for @vuepress/plugin-medium-zoom
*/
const resolveMediumZoomPluginOptions = (themePlugins) => {
if ((themePlugins === null || themePlugins === void 0 ? void 0 : themePlugins.mediumZoom) === false) {
return false;
}
return {
//selector: '.theme-default-content > img, .theme-default-content :not(a) > img',
selector: '.medium-zoom-content > img, .medium-zoom-content :not(a) > img, .medium-zoom-content :not(button) > img',
zoomOptions: {},
// should greater than page transition duration
delay: 400,
};
};
exports.resolveMediumZoomPluginOptions = resolveMediumZoomPluginOptions;