-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathimage-effects.html
47 lines (43 loc) · 1.95 KB
/
image-effects.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: page
title: Image effects
---
<div class="container markdown">
<h2>How to use ShareX image effects?</h2>
<ol>
<li>Download ".sxie" file below by clicking an effect of your choice.</li>
<li>Double click the downloaded file. It will bring image effects window and ask if you want to enable image effects. Click "Yes" button.</li>
<li>Feel free to edit the effect if you want or close the window.</li>
</ol>
<p>Every time you take a screenshot, the image effect will be automatically applied to the screenshot.</p>
<p>To disable image effects, uncheck "Add image effects" in main window "After capture tasks" menu.</p>
</div>
<div class="container-image-effects">
<div class="container">
<div class="row">
{% for image-effect in site.data.image-effects reversed %}<div class="col-image-effect col-sm-6 col-lg-4">
<div class="card image-effect">
<div class="image-effect-title">
<a class="image-effect-name" href="/image-effects/{{ image-effect.name }}.sxie">{% if image-effect.title %}{{ image-effect.title }}{% else %}{{ image-effect.name }}{% endif %}</a>
<span class="image-effect-author">by {{ image-effect.author }}</span>
</div>
<a href="/image-effects/{{ image-effect.name }}.sxie">
<img class="img-fluid" src="/img/image-effects/{{ image-effect.name }}.png" alt="{{ image-effect.title }} screenshot" />
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
{% include common-js.html %}
<script src="/js/masonry.pkgd.min.js"></script>
<script src="/js/imagesloaded.pkgd.min.js"></script>
<script>
let $grid = $(".container-image-effects .row").masonry({
percentPosition: true
});
$grid.imagesLoaded().progress(function() {
$grid.masonry("layout");
});
</script>