Dongzhuoer (Talk | contribs) |
Dongzhuoer (Talk | contribs) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | var | + | var rem = Number($('html').css('font-size').replace('px', '')); |
− | + | function log(value) { console.log(value); } | |
− | + | function particles() { $('#particles-js').toggle(); } | |
− | function particles() { | + | function adjust_figure(scale) { |
− | + | $('figure').each( | |
− | } | + | function (index, value) { |
+ | var max_width = $(value).find('span').width() / rem * scale + 'rem'; | ||
+ | $(value).css('max-width', max_width); | ||
+ | } | ||
+ | ) | ||
+ | } |
Latest revision as of 16:16, 19 October 2016
var rem = Number($('html').css('font-size').replace('px', ));
function log(value) { console.log(value); } function particles() { $('#particles-js').toggle(); } function adjust_figure(scale) { $('figure').each( function (index, value) { var max_width = $(value).find('span').width() / rem * scale + 'rem'; $(value).css('max-width', max_width); } ) }