
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
framework7-plugin-3d-panels
Advanced tools
Framework7 plugin to add 3d effect for side panels
Just grab plugin files from dist/ folder or using npm:
npm install framework7-plugin-3d-panels
And link them to your app's right AFTER Framework7's scripts and styles:
<link rel="stylesheet" href="path/to/framework7.min.css">
<link rel="stylesheet" href="path/to/framework7.3dpanels.css">
...
<script src="path/to/framework7.min.js"></script>
<script src="path/to/framework7.3dpanels.js"></script>
This plugin doesn't add new effect, it just converts "reveal"-effect panels to 3d panels. So make sure that you have "reveal" panel in your layout:
<div class="panel panel-left panel-reveal">...</div>
After you included plugin script file, you need to install plugin:
// install plugin to Framework7
Framework7.use(Framework73dPanels);
// init app and enable plugin
var app = new Framework7({
// enable plugin
panels3d: {
enabled: true,
}
})
This plugin comes with ready to use ES module:
import Framework7 from 'framework7';
import Framework73dPanels from 'framework7-plugin-3d-panels';
// install plugin
Framework7.use(Framework73dPanels);
// init app and enable plugin
var app = new Framework7({
// enable plugin
panels3d: {
enabled: true,
}
})
When plugin installed to Framework7 with Framework7.use(Framework73dPanels), it will extend app instance with two additional methods:
app.panels3d.enable() - enables 3d panelsapp.panels3d.disable() - disables 3d panelsPlugin comes with demo example to see how it works and looks. To make demo works you need to run in terminal:
$ npm run prod
All changes should be done only in src/ folder. This project uses gulp and rollup to build a distributable version.
First you need to install all dependencies:
$ npm install
Then to build plugin's files for testing run:
$ npm run build:dev
If you need a local server while you developing you can run:
$ gulp server
or
$ npm run dev
And working demo will be available on http://localhost:3000/demo/
FAQs
Framework7 plugin to add 3d effect for side panels
We found that framework7-plugin-3d-panels demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.