For example, you want to set 40% alpha transparence to #000000
(black color), you need to add 66
like this #66000000
.
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Hello Analytics - A quickstart guide for JavaScript</title> | |
</head> | |
<body> | |
<h1>GOOGLE LOGIN</h1> | |
<script> |
-
- An animated switching tab bar
- Included in this Ionic React Template/UI
- Ionic Animations
- Simple transition
- Sleek style
- Source Code - https://github.com/alanmontgomery/ionic-react-switch-tabs
- Demo - https://ionic-react-switch-tabs.netlify.app/
export const fetchAsBlob = url => fetch(url) | |
.then(response => response.blob()); | |
export const convertBlobToBase64 = blob => new Promise((resolve, reject) => { | |
const reader = new FileReader; | |
reader.onerror = reject; | |
reader.onload = () => { | |
resolve(reader.result); | |
}; | |
reader.readAsDataURL(blob); |
Apple announced a new feature, "Sign In with Apple" enabling users to sign in to apps using their Apple ID. This new feature is meant to be a secure and privacy-friendly way for users to create an account in apps. Most iOS and Mac users already have an Apple ID, and this new feature lets them use that Apple ID to sign in to other apps and websites.
Apple is taking a firm stance to protect user's privacy, rather than letting applications see the user's real email address, they will provide the app with a fake or random email address unique to each app. Don't you worry! Developers will still be able to send emails to these proxy addresses, it just means developers won't be able to use the email addresses in any other way. This feature will also allow users to disable email forwarding per application.
Apple adopted the existing standards OAuth 2.0 and OpenID Connect to use as the foundation for their new API. If you're familiar
import jwt | |
from jwt.algorithms import RSAAlgorithm | |
import requests | |
from time import time | |
import json | |
import os | |
APPLE_PUBLIC_KEY_URL = "https://appleid.apple.com/auth/keys" | |
APPLE_PUBLIC_KEY = None |
<ion-content> | |
<ion-fab vertical="top" horizontal="end" slot="fixed"> | |
<ion-fab-button color="light" size="small" mode="ios"> | |
<ion-backdrop></ion-backdrop> | |
<ion-icon name="close"></ion-icon> | |
</ion-fab-button> | |
</ion-fab> | |
<pdf-viewer [src]="{url:fileUrl}" [zoom]="pdfZoom" [fit-to-page]="true" type="application/pdf"></pdf-viewer> |
/** | |
* <function description> | |
* @param {<type>} param1 <description> | |
* @param {<type>} param2 <description> | |
* @param {<type>} param3 <description> | |
* @return {<type>} <description> | |
*/ | |
Example | |
[ | |
{ | |
"nombre":"Alegría-Dulantzi", | |
"cords":{ | |
"Latitud":42.84149, | |
"Longitud":-2.513507 | |
} | |
}, | |
{ | |
"nombre":"Amurrio", |