Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@sagalbot/breeze
Advanced tools
Breeze is a small JavaScript library for transitioning elements into the viewport.
<h1
class="transition duration-1000 transform ease-in"
x-breeze-from="opacity-0 translate-y-10"
>
This one will fade in and up over 1000ms with TailwindCSS utility classes.
</h1>
<script type="module">
// Load the library
import { breeze } from "https://unpkg.com/@sagalbot/breeze@latest/dist/breeze.js";
// Transition anything within the body
breeze(document.body);
</script>
The API design was heavily influenced by TailwindCSS and AlpineJS (which it works amazing with!), but is totally agnostic of any frameworks you might be using. Breeze just needs a root element and the classes you'll use for your transition.
yarn
yarn add @sagalbot/breeze
npm
npm i @sagalbot/breeze
Breeze ships as an ES Module, so you'll need to load it a bit differently than you might be used to.
<script type="module">
// Load the library
import { breeze } from "https://unpkg.com/@sagalbot/breeze@latest/dist/breeze.js";
// Transition anything within the body
breeze(document.body);
</script>
https://unpkg.com/@sagalbot/breeze@latest/dist/breeze.js
https://unpkg.com/@sagalbot/breeze@0.4.3/dist/breeze.js
Breeze will only apply entrance transitions to children of this element.
NPM/Bundlers: If you're bundling your code with something like webpack or rollup:
import { breeze } from '@sagalbot/breeze'
breeze(document.body);
CDN: If you're using the CDN:
<script type="module">
// Load the library
import { breeze } from "https://unpkg.com/@sagalbot/breeze@latest/dist/breeze.js";
// Transition anything within the body
breeze(document.body);
</script>
You'll mainly interact with Breeze via custom attributes on HTMLElements. We'll refer to these as directives.
Breeze has a few directives available:
x-breeze-from
: A set of one or more CSS classes that define the starting point for your transition.x-breeze-to
: A set of one or more CSS classes that define the end state for your transition.x-breeze-from
<h1
class="transition duration-1000 transform ease-in"
x-breeze-from="opacity-0 translate-y-5"
>
This one will fade in and up over 1000ms with TailwindCSS utility classes.
</h1>
When using x-breeze-from
, you usually won't need to set an x-breeze-to
state. x-breeze-from
classes are added immediately when the element appears in the viewport, and then removed on the next animation frame. In the example above, we don't need to explicitly set x-breeze-to="opacity-100"
because that is the elements default opacity – as soon as opacity-0
is removed from the classList
, the element will being to transition in.
x-breeze-to
<h1
class="transition duration-1000 transform ease-in"
x-breeze-to="translate-y-10"
>
This one translate down in the viewport as it enters.
</h1>
When using x-breeze-to
without setting x-breeze-from
, whatever you set in class
should be considered the initial state. When the element enters the viewport, the classes in x-breeze-to
will be added to the element.
Breeze uses IntersectionObserver
under the hood to detect when an element has entered the viewport.
IE does not support IntersectionObserver
, Edge 16 was the first Edge release with support for the API. All the latest versions of Edge, Firefix, Chrome, Safari and Opera all support this API.
Breeze ships as an ES module to keep overhead as low as possible. If you're using a build tool like Webpack or Rollup, this won't impact you, but if you're adding the package via CDN, you will need ES module support in the browser. Support for ES modules in the browser is pretty on par with IntersectionObserver.
FAQs
Transitions DOM elements as they enter the viewport.
We found that @sagalbot/breeze 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.