npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aframe-html-shader

v0.2.0

Published

A shader to render DOM Element for A-Frame VR.

Downloads

492

Readme

A-Frame HTML Shader

A shader to render 2D HTML and CSS to a texture for A-Frame.

Inspired by:

DEMO

example

The screenshot of the HTML element is done via html2canvas. To learn more about the library, check out html2canvas's documentation

Properties

  • A-Frame's basic material properties still supported (e.g., side, transparent).
  • width and height are sizes to capture. For example, if the HTML element's dimensions are 640x480 and width: 200; height: 100, then the rendered HTML canvas will be cropped to 200px width and 100px height from the left-top position.
  • fps is the framerate to render per second. If we only need to render once and be static, we can keep the value at 0.
  • ratio lets us use the HTML element's natural aspect ratio. If we keep the value as null, the generated canvas will scaled for fit to the entity's geometry. If we set ratio: width, the geometry's height will be changed to match the HTML element's ratio, and vice-versa for ratio: height.

| Property | Description | Default Value | | -------- | ----------- | ------------- | | target | DOM element to render, given by a CSS selector (e.g., #foo). | null | | width | Width to capture. | Target's width | | height | height to capture. | Target's height | | fps | FPS to render. For example, providing 10 will refresh the material against the HTML 10 times per second. By default, the material will be static. | 0 | | ratio | Use target's ratio (i.e., width, height). | height | | debug | For debugging purposes, a DOM element which to append a rendered canvas to. Provided via a CSS selector (e.g., #debug). debug DOM to append generated canvas from html2canvas | null |

For reference, check out the following links:

Available options by html2canvas will be ready for properties soon.

Limitations

We will often see that the rendered looks different from how the source HTML in 2D. The process takes trial-and-error and can also depend on the device.

To check what is actually rendered by html2canvas, set the debug property to append and view the generated canvas. More for limitations, see html2canvas's documentation on limitations.

Method

The following method is coming soon:

  • render() (This is useful when you set fps as 0)

Events

The following events are coming soon:

  • html-ready when html2canvas set and ready to render
  • html-draw each time it renders

Visibility

For the conversion to canvas to work, we need to make the target HTML element technically visible and within the viewport, but we also don't want it to get in the way of our scene. We usually want to give the HTML element a fixed position and z-index it under everything:

<div id="targetHTML" style="width: 100%; height: 100%; position: fixed; left: 0; top: 0; z-index: -1; overflow: hidden"></div>

Usage

Browser Installation

Install and use by directly including the browser files:

<head>
  <title>My A-Frame Scene</title>
  <script src="https://aframe.io/releases/0.5.0/aframe.min.js"></script>
  <script src="https://unpkg.com/[email protected]/dist/aframe-html-shader.min.js"></script>
</head>

<body>
  <a-scene>
    <a-entity geometry="primitive: box" material="shader: html; target: #htmlElement"></a-entity>
  </a-scene>

  <div style="width: 100%; height: 100%; position: fixed; left: 0; top: 0; z-index: -1; overflow: hidden">
    <div id="htmlElement" style="background: #F8F8F8; color: #333; font-size: 48px">Hello, HTML!</div>
  </div>
</body>

NPM Installation

Install via NPM:

npm install --save aframe-html-shader

Then register and use.

import 'aframe'
import 'aframe-html-shader'