Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@gladeye/aframe-preloader-component
Advanced tools
A preloading animation that automatically displays while scene assets load.
A preloading bar that automatically displays while scene assets load.
For A-Frame.
Property | Description | Default Value |
---|---|---|
type | type of CSS framework to use - acceptable values are: 'bootstrap' or 'custom' | bootstrap |
id | ID of the auto injected preloader modal | preloader-modal |
autoInject | whether or not to auto-inject the preloader html into the page | true |
target | the html target selector | #preloader-modal |
progressValueAttr | an attribute of the progress bar to set when progress is updated | aria-valuenow |
barProgressStyle | target css style to set as a percentage on the bar | width |
bar | target css style to set as a percentage on the bar | width |
label | html class of label in preloader - used to set the percentage | #preloader-modal .progress-label |
labelText | loading text format {0} will be replaced with the percent progress e.g. 30% | {0}% Complete |
autoClose | automatically close preloader by default - not supported if clickToClose is set to 'true' | true |
clickToClose | whether the user must click a button to close the modal when preloading is finished | false |
closeLabelText | default label text of click to close button | Continue |
title | title of preloader modal. Blank by default | |
debug | whether or not to enable logging to console | false |
disableVRModeUI | whether or not to disable VR Mode UI when preloading | true |
slowLoad | deliberately slow down the load progress by adding 2 second delays before updating progress - used to showcase loader on fast connections and should not be enabled in production | slowLoad |
doneLabelText | text to set on label when loading is complete | Done |
Install and use by directly including the browser files as well as Bootstrap CSS and JS as well as jQuery 1.12.x:
<head>
<title>My A-Frame Scene</title>
<!-- Bootstrap Bootswatch theme CSS - other themes available here: https://bootswatch.com -->
<link rel="stylesheet" href="https://cdn.rawgit.com/thomaspark/bootswatch/gh-pages/slate/bootstrap.min.css" />
<!-- Bootstrap JS Dependencies -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- A-Frame JS Dependencies -->
<script src="https://aframe.io/releases/0.6.0/aframe.min.js"></script>
<script src="https://cdn.rawgit.com/gladeye/aframe-preloader-component/1.0.0/dist/aframe-preloader-component.min.js"></script>
</head>
<body>
<a-scene preloader>
<a-assets>
<a-asset-item id="model" src="model.obj" preload="true"></a-asset-item>
<img id="texture1" src="texture1.jpg" crossorigin="anonymous" preload="true">
<img id="texture2" src="texture2.jpg" crossorigin="anonymous" preload="true">
</a-assets>
</a-scene>
</body>
Install via npm:
npm install @gladeye/aframe-preloader-component
Then require and use.
require('aframe');
require('@gladeye/aframe-preloader-component');
FAQs
A preloading animation that automatically displays while scene assets load.
We found that @gladeye/aframe-preloader-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.