Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

jerosoler/3dbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

2 Commits

Repository files navigation

GitHub license

PLAY

Demo

CDN

<script src="https://cdn.jsdelivr.net/gh/jerosoler/3dbox/THREEDBox.js"></script>

NPM

npm install threedbox

How to use

Download THREEDBox.js file.

Javascript:

if ('paintWorklet' in CSS && 'registerProperty' in CSS && 'CSSUnitValue' in window) {
 CSS.registerProperty({
 name: '--threedbox-angle-vertical',
 syntax: '<length>',
 initialValue: '10px',
 inherits: false
 });
 CSS.registerProperty({
 name: '--threedbox-angle-horitzontal',
 syntax: '<length>',
 initialValue: '10px',
 inherits: false
 });
 CSS.registerProperty({
 name: '--threedbox-padding',
 syntax: '<length>',
 initialValue: '50px',
 inherits: false
 });
 CSS.registerProperty({
 name: '--threedbox-color',
 syntax: '<color>',
 initialValue: '#ffffff',
 inherits: false
 });
 CSS.registerProperty({
 name: '--threedbox-color-back',
 syntax: '<color>',
 initialValue: '#ffffff',
 inherits: false
 });
 CSS.registerProperty({
 name: '--threedbox-color-border',
 syntax: '<color>',
 initialValue: '#ffffff',
 inherits: false
 });
 CSS.paintWorklet.addModule('THREEDBox.js');
} else {
 console.log("Not Supported");
 alert("Not Supported");
}

CSS

div {
 padding: 50px;
 --threedbox-color: #ff7d64;
 --threedbox-color-back: #a32107;
 --threedbox-color-border: #ff0000;
 --threedbox-angle-vertical: 15px;
 --threedbox-angle-horitzontal: -15px;
 --threedbox-padding: 50px;
 background-image: paint(threedbox);
}

Releases

No releases published

Packages

Contributors

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /