background preloader

Daneden/animate.css: □ A cross-browser library of CSS animations. As easy to use as an easy thing.

Daneden/animate.css: □ A cross-browser library of CSS animations. As easy to use as an easy thing.
Related:  ANGULAR

Integrate FontAwesome icons in an Angular application When you bootstrap an Ionic application with the Ionic CLI, you automatically have access to the Ionicons library. A collection of SVG icons for web, iOS, and Android development. The library is not that big, and you usually end up adding icons from other sources to your project. In my previous blog post, I showed you how to add individual SVG icons to an Ionic project. In this blog post, we are going to look at another icon library, FontAwesome, and how to add it to your Ionic application. FontAwesome is a popular icon library and provides over 1500 icons for free. FontAwesome provides free open source libraries for a variety of JavaScript front end frameworks, like Vue.js, React, Angular, Ember and more. Setup To add FontAwesome to your project, you have to install the core library, one or more icon libraries and lastly the Angular integration library. The free version of FontAwesome gives your project access to a subset of icons. Globally Locally on a per-project basis Usage home.page.ts

NANO : Quelques raccourcis à retenir « Korben Korben Quand on bidouille un peu sous Linux ou OSX, on doit souvent éditer pas mal de fichiers de conf. Pour ce faire, certains utilisent Vi ou Vim qui est très puissant, mais aussi très barbu. Dans mes exemples, je préfère utiliser Nano qui est un éditeur tout aussi sympa et surtout simple à utiliser pour les débutants. Seulement, il y a quand même quelques petits trucs à savoir, et je me suis dit que ce serait bien de faire un article récap avec les raccourcis que j'utilise pour nano. Je ne serai pas exhaustif, car il y a des trucs qu'on n’utilise jamais, mais si vous retenez au moins ça, vous avez l'essentiel pour vous débrouiller. Autre truc important à savoir-faire, ce sont les copier / couper / coller sous nano. Pour ce faire, placez-vous devant la ligne à copier, puis faites CTRL + K pour la couper, suivi d'un CTRL + U pour la coller. Autrement, si vous voulez sélectionner plusieurs lignes, faites un CTRL + ^ et déplacez les flèches du clavier pour surligner le texte qui vous intéresser.

craigmdennis/animateCSS FortAwesome/angular-fontawesome: Official Angular component for Font Awesome 5 Comment déterminer le type d'un hash ? « Korben Korben Comment déterminer le type d’un hash ? J'ai une question pour vous ! Savez-vous reconnaitre un hash MD5, MD4, NTLM, MySQL, généré par WordPress et j'en passe d'un autre hash ? Moi non, et pour cause : Il existe plus de 250 types de hash, de longueur, de jeu de caractère et de format différent (avec ou sans salt.)...etc. Impossible à l'oeil nu de s'y retrouver rapidement. Toutefois, il arrive que certains hash ne puissent être identifiés correctement. HashTag reste quand même très pratique pour dégrossir une liste de mots de passe hashés et savoir un peu mieux à quoi on a à faire (histoire de faire chauffer le Hashcat). Vous avez aimé cet article ?

國泰世華行動銀行 好事成雙 3+ Ways to Add Bootstrap 4 to Angular 9/8 With Example & Tutorial In this tutorial, we will see how to use Bootstrap to style apps built using Angular 9. We'll see how to integrate Angular with Bootstrap, in various ways including using ng-bootstrap and ngx-bootstrap packages. We'll be using Angular CLI 9 for generating a brand new project. These are the steps of our tutorial: What is Bootstrap Bootstrap is the most popular HTML and CSS framework for building responsive layouts with ease and without having a deep knowledge of CSS (Still custom CSS is required to customize your design ane make it different from the other Bootstrap-styled websites unless you are using a BS theme developed specifically for you). Bootstrap 4 is the latest version of BS which brings many new and powerful features to the framework most importantly Flexbox which is now the default display system for BS grid layout (one of the most important features of BS). 3+ Ways to Include Bootstrap 4 In Your Angular Project This can be done in multiple ways: Step 1 - Installing Angular CLI v9 ?

Juste pour le plaisir de faire chier... « Korben Korben Juste pour le plaisir de faire chier… ... les spammeurs qui viennent pomper tout ce qui ressemble à un email sur votre site, je partage avec vous cette astuce trouvée ici. Il s'agit d'un petit bout de code PHP qui permet de générer des milliers d'emails à la volée, de manière totalement aléatoire. Fallait l'imaginer ! Pensez à dire aux moteurs de recherche que vous ne voulez pas que cette page s'indexe avec un petit "Disallow: /emails.php" dans le robots.txt. Vous avez aimé cet article ? CSS Background Animations Background animations are an awesome touch when used correctly. In the past, I used MooTools to animate a background position. Luckily these days CSS animations are widely supported enough to rely on them to take over JavaScript-based animation tasks. The following simple CSS snippet animates the background image (via background position) of a given element. We'll use CSS animations instead of transitions for this effect: With the animation code in place, now it's time to apply it to an element with a background image: The cloud background image within the sample element will elegantly scroll from left to right over a duration of 40 seconds, seamlessly repeating an infinite number of times. How epic is it that we don't need to use JavaScript to manage these animations anymore?

Angular 9 Components Quick Start The goal in this guide is to build and run a simple Angular application in TypeScript, using the Angular CLI and jQWidgets. Step 1. Install Node.js and npm if they are not already on your machine. Verify that you are running at least Node.js version 8.x or greater and npm version 5.x or greater by running node -v and npm -v in a terminal/console window. Then install the Angular CLI globally. npm install -g @angular/cli Step 2. Open a terminal window. Generate a new project and default app by running the following command: ng new my-app The Angular CLI installs the necessary npm packages, creates the project files, and populates the project with a simple default app. Step 3: Serve the application Go to the project directory. cd my-app Install the jqwidgets-ng dependency npm install jqwidgets-ng Open the angular.json file and inside the styles property add this line: "node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" Launch the server. ng serve --open src/app/app.component.ts

establishing geek cred since 1305712800 You guys have seen the effect before — where something fades in and something else fades in a few seconds afterwards, like this site. I thought it was cool so I tried to replicate is using Dan Eden's Animate.css (didn't really want to spend time writing my own animations). So I searched the web and tried to find ways of doing it. Starting of with some simple HTML. <div class="first"> Fades in FIRST </div><div class="second"> Fades in SECOND </div> I'm only using the FadeInUp animation so I only took that part of the code (I also took out the -o-prefix). Don't forget the jQuery library. The standard javascript setTimeout function seemed to work well. $('.first').addClass('animated fadeInUp'); setTimeout(function () { $('.second').show().addClass('animated fadeInUp');}, 1500 ); And finally we need to add a style="display:none" to the second class or it will flash in. <div class="first"> Fades in FIRST </div><div class="second" style="display:none"> Fades in SECOND </div> That's pretty much it.

Related: