Difference between revisions of "Template:NKU China/js/share"

 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
         function log(value) { console.log(value); }
 
         function log(value) { console.log(value); }
 
         function particles() { $('#particles-js').toggle(); }
 
         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);
 +
                }
 +
            )
 +
        }

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);
               }
           )
       }