<% /* Searches all CSS properties in CSSData that are animated and lists them in columns */ // Read all CSSData and extract animated properties var data = require('mdn-data/css'); var animatedProps = []; // Go through all properties, and test if they are animated. If so, add them to // the animatedProps array. for (var property in data.properties) { if (data.properties.hasOwnProperty(property)) { if (data.properties[property].animationType !== "discrete") { animatedProps.push(property); } } } animatedProps.sort(); // Build the output string var result = "
\n \n
"; %><%- result %>