Frontend-Layers / html-base

Runtime environment for comfortable handcoding frontend tasks with variative dependencies and useful open source tools
https://html-base-intro.netlify.app/
MIT License
3 stars 2 forks source link

Next possible features #20

Open andreymatin opened 3 years ago

andreymatin commented 3 years ago
  background-image: image-set(url('../images/bg.webp') 1x,
      url('../images/bg.webp') 2x);

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .class-name {
    background-image: url('../images/page-bg@2x.jpg');
    background-image: image-set(url('../images/bg.webp') 1x,
      url('../images/bg.webp') 2x);
  }
}
andreymatin commented 3 years ago
andreymatin commented 3 years ago
    <!-- Logo -->
    <div class="logo">
      <a class="logo__link" href="./index.html" accesskey="1">
        <picture>
          <source srcset="./images/logo.webp 1x, ./images/logo@2x.webp 2x" type="image/webp">
          <img loading="eager" srcset="./images/logo.png 1x, ./images/logo@2x.png 2x" src="./images/logo.png" alt=" | Logo" width="233" height="32">
        </picture>
      </a>
    </div>
andreymatin commented 3 years ago
andreymatin commented 3 years ago
andreymatin commented 3 years ago

VSC: intellisence for CSS class names from node_modules folder

"html-css-class-completion.includeGlobPattern" (default: "**/*.{css,html}")
andreymatin commented 3 years ago

VSC: Path Intellisense for template folder

andreymatin commented 3 years ago
andreymatin commented 3 years ago
andreymatin commented 2 years ago
andreymatin commented 2 years ago

Automatic CSS Test: CSS Overflow Elements Inspiration: https://davidwalsh.name/detect-overflow-elements

andreymatin commented 2 years ago

HTML to JSX

andreymatin commented 2 years ago

Webpack bundler

andreymatin commented 2 years ago

? gulp custom: TOC CSS Generator

andreymatin commented 1 year ago

WASM integration example

andreymatin commented 1 year ago