mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-16 17:03:26 +08:00
9 lines
538 B
HTML
9 lines
538 B
HTML
<!-- Screenshot fullscreen - zoomable image -->
|
|
<div style="width: 100%; height: 100vh; overflow: auto; background: #222; display: flex; align-items: start; justify-content: center;">
|
|
<img src="{{ output_path }}"
|
|
alt="Screenshot of page"
|
|
class="extractor-fullscreen screenshot-fullscreen"
|
|
style="max-width: 100%; cursor: zoom-in;"
|
|
onclick="this.style.maxWidth = this.style.maxWidth === 'none' ? '100%' : 'none'; this.style.cursor = this.style.maxWidth === 'none' ? 'zoom-out' : 'zoom-in';">
|
|
</div>
|