
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
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.12/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.12/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.
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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.