ngx-skeleton-loader
Advanced tools
Changelog
[2.4.4][] - 2020-08-21
npm run dev:ssr
and access http://localhost:4200/index.html
and the page will run using angular universal 💪.prettierrc
file with some of the code styling rulesChangelog
[2.4.3][] - 2020-08-13
Changelog
[2.4.2][] - 2020-08-01
perf-marks
to latest versionChangelog
[2.4.0][] - 2020-08-01
Changelog
[2.2.1][] - 2020-06-30
includes
npm run postinstall
command to follow the new rules from update.angular.io websiteChangelog
[2.2.0][] - 2020-06-01
prefers-reduced-motion
to respect user’s OS option to Reduce Motion
. More details about prefers-reduced-motion
in https://web.dev/prefers-reduced-motion/Changelog
[2.1.0][] - 2020-06-01
Changelog
[2.0.0][] - 2020-05-15
animation
attributeprogress-dark
to enable users when using theme with darker color schemaNow we can define the animation we want to use in <ngx-skeleton-loader>
component via animation
input. It's a string that can defined the animation used during the loading, having as options:
false
: it will disable the animation;progress
- default: it will use it progress
as animation;pulse
: it will use pulse
as animation;
progress
is the default animation, used as the single one previously. If you don't pass the animation attribute, it defaults toprogress
.
<div class="item">
<!-- Disables the animation -->
<ngx-skeleton-loader animation="false"></ngx-skeleton-loader>
<!-- Uses `progress` as animation -->
<ngx-skeleton-loader animation="progress"></ngx-skeleton-loader>
<ngx-skeleton-loader></ngx-skeleton-loader>
<!-- Uses `pulse` as animation -->
<ngx-skeleton-loader animation="pulse"></ngx-skeleton-loader>
</div>
animation
input. It's a string with false
as value that the component receives to check if it should not load progress animation.It works only to disable it. In case you want to keep enable it
<div class="item">
<ngx-skeleton-loader animation="false"></ngx-skeleton-loader>
</div>
Changelog
[1.2.7][] - 2020-04-13
package.json
filesChangelog
[1.2.6][] - 2020-02-26