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.
translucent
Advanced tools
Demo : https://byeolbit.github.io/translucent
Firefox 35.0 | Chrome 53.0 | Safari 6 | Edge 38.0 | Opera 40.0 |
---|---|---|---|---|
※ Not support Internet Explorer. (It does not support CSS filter)
<script src="https://cdn.jsdelivr.net/npm/translucent@1.0.11/dist/translucent.min.js"></script>
<div class="your-background">
<div class="your-element">
<!-- your card contents here -->
</div>
</div>
let yourElement = document.body.querySelector('.your-element');
let translucent = new Translucent(yourElement);
or you can customize options.
let translucent = new Translucent(yourElement, {
bgElement : '.your-background', // id or class name
filterValue : 5, // int
cardColor : 'clear', // preset color or your own color
shadow : true // true or false
});
Apply translucent card them to element.
HTMLElement
Attribute | Type | Default | Description |
---|---|---|---|
bgElement | string | parent of target element | Background element. |
filterValue | number | 10 | This is blur value. |
cardColor | string | 'white' | Color of card. You can use preset or your own color. Preset : 'clear' , 'white' , 'grey' , 'black' |
shadow | boolean | true | This decides shadow effect of element. true applies effect. |
Change amount of blur for background.
number
// Apply 20 blur to background
translucent.blur(20);
Destroy translucent from the element.
Translucent.destroy();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/translucent@1.0.11/dist/jquery.translucent.min.js"></script>
<div class="your-background">
<div class="your-element">
<!-- your card contents here -->
</div>
</div>
$('.your-element').Translucent();
or you can customize options.
$('.your-element').Translucent({
background: '.your-background', // id or class name
filterValue : 5, // int
cardColor : 'clear', // preset color or your own color
shadow : true // true or false
});
Apply translucent card them to element.
string
Attribute | Type | Default | Description |
---|---|---|---|
bgElement | string | parent of target element | Background element. |
filterValue | number | 10 | This is blur value. |
cardColor | string | 'white' | Color of card. You can use preset or your own color. Preset : 'clear' , 'white' , 'grey' , 'black' |
shadow | boolean | true | This decides shadow effect of element. true applies effect. |
Change amount of blur for background.
number
// Apply 20 blur to background
$('.your-element').Translucent('blur', 20);
Destroy translucent from the element.
$('.your-element').Translucent('destroy');
FAQs
Translucent plastic card theme.
The npm package translucent receives a total of 4 weekly downloads. As such, translucent popularity was classified as not popular.
We found that translucent 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
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.