For example, you want to set 40% alpha transparence to #000000
(black color), you need to add 66
like this #66000000
.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useRef, useEffect, useMemo, useLayoutEffect, useImperativeHandle, forwardRef, Ref } from 'react' | |
import echarts, { ECOption } from './echarts-ref'; | |
export type EchartProp = { | |
option: ECOption, | |
style?: { | |
width: string, | |
height: string | |
} | |
className?: string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Download TwitterOAuth from http://github.com/abraham/twitteroauth. | |
require_once('twitteroauth/twitteroauth.php'); | |
// Get consumer keys from http://dev.twitter.com/apps. | |
$consumer_key = ''; | |
$consumer_secret = ''; | |
$oauth_bridge_code = ''; |