mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-18 20:04:38 +00:00
add video to screenshot
This commit is contained in:
parent
7d640db6b1
commit
48d35006cb
2 changed files with 25 additions and 3 deletions
BIN
public/img/play_screenshot.jpeg
Normal file
BIN
public/img/play_screenshot.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 194 KiB |
|
|
@ -12,6 +12,20 @@
|
|||
<script type="text/javascript" src="js/jquery.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$.getScript("https://s7.addthis.com/js/250/addthis_widget.js#pubid=lefnire");
|
||||
|
||||
//custom thumb
|
||||
$(function(){
|
||||
$('.ytembed:not(.processed)').addClass('processed').each(function() {
|
||||
$(this).find('a').click(function(e) {
|
||||
e.preventDefault();
|
||||
var width = $(this).find('img').width();
|
||||
var height = $(this).find('img').height();
|
||||
var url = $(this).attr('href');
|
||||
var $iframe = $('<iframe src="'+url+'" width="'+width+'" height="'+height+'" frameborder="0"/>');
|
||||
$(this).parent().html($iframe);
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
|
|
@ -68,9 +82,17 @@
|
|||
<div class='container'>
|
||||
<div class='marketing'>
|
||||
<p> </p>
|
||||
<p><img src='https://raw.github.com/lefnire/habitrpg/master/public/img/screenshot.jpeg' /></p>
|
||||
<h2>How Does it Work</h2>
|
||||
<p class=''>Watch the <a href="http://www.youtube.com/watch?feature=player_detailpage&v=uF8ZuN_xxjw#t=261s">video tutorial here</a>.</p>
|
||||
<p>
|
||||
<!-- you need a div with the class 'ytembed' -->
|
||||
<div class="ytembed">
|
||||
<!-- put a link with the url + embed options of your video -->
|
||||
<a href="http://www.youtube.com/embed/uF8ZuN_xxjw?rel=0&showinfo=0&autohide=1&autoplay=1&wmode=transparent">
|
||||
<!-- and a thumbnail, with the width/height specified -->
|
||||
<img src="/img/play_screenshot.jpeg" alt="Click to play"/>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</p>
|
||||
<h2>Habits</h2>
|
||||
<p>Habits are goals that you constantly track. For some habits, it only makes sense to gain points (eg, "1h Productive Work"). For others, it only makes sense to lose points (like "Eat Junk Food"). For the rest, both gain and loss apply (eg, for "Take The Stairs", stairs is a gain, elevator is a loss).</p>
|
||||
<h2>Dailies</h2>
|
||||
|
|
|
|||
Loading…
Reference in a new issue