console
$(function() {
/**
* echarts 地理坐标转换为笛卡尔坐标
* @param {Object} chart echarts实例
* @param {Number} idx 需要转换的系列
* @param {array} geoCoord 地理坐标
* @return {array} 笛卡尔坐标
*/
function getPosByGeo(chart, idx, geoCoord) {
var idx = idx || 0;
// 获取系列
var seriesModel = chart.getModel().getSeriesByIndex(idx);
// 获取地理坐标系实例
var coordSys = seriesModel.coordinateSystem;
// dataToPoint 相当于 getPosByGeo
var point = coordSys.dataToPoint(geoCoord);
return point;
// pointToData 相当于 getGeoByPos
// var coord = coordSys.dataToPoint(point);
}
var drawEffect = function(chart, conf) {
var coord, point, sets = [],
dotW = 10,
dotH = 15,
dotdom = ['<div class="dot-wrap">', ' <div class="title"></div>', ' <div class="dot"></div>', '</div>', '<div class="ellipsis"></div>'].join(''),
$titles = [],
titles_length = [];
conf.data.forEach(function(d, index) {
var i = (d.value - conf.minValue) / conf.space >> 0;
var j = (d.value2 - conf.minValue2) / conf.space2 >> 0;
coord = geoCoordMap[d.name];
point = getPosByGeo(chart, 0, coord);
var $dotdom = $(dotdom).appendTo(conf.$el);
var $title = $dotdom.children('.title').text(d.name);
var $dot = $dotdom.children('.dot');
var $dotwrap = $dot.parent().css({
left: point[0] - dotW / 2 + 'px',
top: point[1] - dotH + 'px'
});
var $ellipsis = $dotwrap.next('.ellipsis');
$dot.css({
width: '10px',
height: '15px',
'background-image': 'url(http://gitee.com/cwy7/romoteStorage/raw/master/images/dot-' + i + '.png)',
'background-repeat': 'no-repeat'
}).addClass('dot-animate');
$ellipsis.css({
width: '49px',
height: '27px',
left: point[0] - 49 / 2,
top: point[1] - 27 / 2 - 3,
background: 'url(http://gitee.com/cwy7/romoteStorage/raw/master/images/ellipsis-' + i + '.png) no-repeat center center',
opacity: 0.65
}).addClass('ellipsis-' + j); $titles.push($title);
})
titles_length = $titles.length;
if (!titles_length) return;
_.delay(function() {
$titles[0].addClass('title-effect');
$titles.forEach(function($title, index) {
$title.on("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend", function() {
$title.removeClass('title-effect');
_.delay(function() {
$titles[index < titles_length - 1 ? index + 1 : 0].addClass('title-effect');
},
1000)
})
})
},
1200);
};
var geoCoordMap = {
'海门': [121.15, 31.89],
'鄂尔多斯': [109.781327, 39.608266],
'招远': [120.38, 37.35],
'舟山': [122.207216, 29.985295],
'齐齐哈尔': [123.97, 47.33],
'盐城': [120.13, 33.38],
'赤峰': [118.87, 42.28],
'青岛': [120.33, 36.07],
'乳山': [121.52, 36.89],
'金昌': [102.188043, 38.520089],
'泉州': [118.58, 24.93],
'莱西': [120.53, 36.86],
'日照': [119.46, 35.42],
'胶南': [119.97, 35.88],
'南通': [121.05, 32.08],
'拉萨': [91.11, 29.97],
'云浮': [112.02, 22.93],
'梅州': [116.1, 24.55],
'文登': [122.05, 37.2],
'上海': [121.48, 31.22],
'攀枝花': [101.718637, 26.582347],
'威海': [122.1, 37.5],
'承德': [117.93, 40.97],
'厦门': [118.1, 24.46],
'汕尾': [115.375279, 22.786211],
'潮州': [116.63, 23.68],
'丹东': [124.37, 40.13],
'太仓': [121.1, 31.45],
'曲靖': [103.79, 25.51],
'烟台': [121.39, 37.52],
'福州': [119.3, 26.08],
'瓦房店': [121.979603, 39.627114],
'即墨': [120.45, 36.38],
'抚顺': [123.97, 41.97],
'玉溪': [102.52, 24.35],
'张家口': [114.87, 40.82],
'阳泉': [113.57, 37.85],
'莱州': [119.942327, 37.177017],
'湖州': [120.1, 30.86],
'汕头': [116.69, 23.39],
'昆山': [120.95, 31.39],
'宁波': [121.56, 29.86],
'湛江': [110.359377, 21.270708],
'揭阳': [116.35, 23.55],
'荣成': [122.41, 37.16],
'连云港': [119.16, 34.59],
'葫芦岛': [120.836932, 40.711052],
'常熟': [120.74, 31.64],
'东莞': [113.75, 23.04],
'河源': [114.68, 23.73],
'淮安': [119.15, 33.5],
'泰州': [119.9, 32.49],
'南宁': [108.33, 22.84],
'营口': [122.18, 40.65],
'惠州': [114.4, 23.09],
'江阴': [120.26, 31.91],
'蓬莱': [120.75, 37.8],
'韶关': [113.62, 24.84],
'嘉峪关': [98.289152, 39.77313],
'广州': [113.23, 23.16],
'延安': [109.47, 36.6],
'太原': [112.53, 37.87],
'清远': [113.01, 23.7],
'中山': [113.38, 22.52],
'昆明': [102.73, 25.04],
'寿光': [118.73, 36.86],
'盘锦': [122.070714, 41.119997],
'长治': [113.08, 36.18],
'深圳': [114.07, 22.62],
'珠海': [113.52, 22.3],
'宿迁': [118.3, 33.96],
'咸阳': [108.72, 34.36],
'铜川': [109.11, 35.09],
'平度': [119.97, 36.77],
'佛山': [113.11, 23.05],
'海口': [110.35, 20.02],
'江门': [113.06, 22.61],
'章丘': [117.53, 36.72],
'肇庆': [112.44, 23.05],
'大连': [121.62, 38.92],
'临汾': [111.5, 36.08],
'吴江': [120.63, 31.16],
'石嘴山': [106.39, 39.04],
'沈阳': [123.38, 41.8],
'苏州': [120.62, 31.32],
'茂名': [110.88, 21.68],
'嘉兴': [120.76, 30.77],
'长春': [125.35, 43.88],
'胶州': [120.03336, 36.264622],
'银川': [106.27, 38.47],
'张家港': [120.555821, 31.875428],
'三门峡': [111.19, 34.76],
'锦州': [121.15, 41.13],
'南昌': [115.89, 28.68],
'柳州': [109.4, 24.33],
'三亚': [109.511909, 18.252847],
'自贡': [104.778442, 29.33903],
'吉林': [126.57, 43.87],
'阳江': [111.95, 21.85],
'泸州': [105.39, 28.91],
'西宁': [101.74, 36.56],
'宜宾': [104.56, 29.77],
'呼和浩特': [111.65, 40.82],
'成都': [104.06, 30.67],
'大同': [113.3, 40.12],
'镇江': [119.44, 32.2],
'桂林': [110.28, 25.29],
'张家界': [110.479191, 29.117096],
'宜兴': [119.82, 31.36],
'北海': [109.12, 21.49],
'西安': [108.95, 34.27],
'金坛': [119.56, 31.74],
'东营': [118.49, 37.46],
'牡丹江': [129.58, 44.6],
'遵义': [106.9, 27.7],
'绍兴': [120.58, 30.01],
'扬州': [119.42, 32.39],
'常州': [119.95, 31.79],
'潍坊': [119.1, 36.62],
'重庆': [106.54, 29.59],
'台州': [121.420757, 28.656386],
'南京': [118.78, 32.04],
'滨州': [118.03, 37.36],
'贵阳': [106.71, 26.57],
'无锡': [120.29, 31.59],
'本溪': [123.73, 41.3],
'克拉玛依': [84.77, 45.59],
'渭南': [109.5, 34.52],
'马鞍山': [118.48, 31.56],
'宝鸡': [107.15, 34.38],
'焦作': [113.21, 35.24],
'句容': [119.16, 31.95],
'北京': [116.46, 39.92],
'徐州': [117.2, 34.26],
'衡水': [115.72, 37.72],
'包头': [110, 40.58],
'绵阳': [104.73, 31.48],
'乌鲁木齐': [87.68, 43.77],
'枣庄': [117.57, 34.86],
'杭州': [120.19, 30.26],
'淄博': [118.05, 36.78],
'鞍山': [122.85, 41.12],
'溧阳': [119.48, 31.43],
'库尔勒': [86.06, 41.68],
'安阳': [114.35, 36.1],
'开封': [114.35, 34.79],
'济南': [117, 36.65],
'德阳': [104.37, 31.13],
'温州': [120.65, 28.01],
'九江': [115.97, 29.71],
'邯郸': [114.47, 36.6],
'临安': [119.72, 30.23],
'兰州': [103.73, 36.03],
'沧州': [116.83, 38.33],
'临沂': [118.35, 35.05],
'南充': [106.110698, 30.837793],
'天津': [117.2, 39.13],
'富阳': [119.95, 30.07],
'泰安': [117.13, 36.18],
'诸暨': [120.23, 29.71],
'郑州': [113.65, 34.76],
'哈尔滨': [126.63, 45.75],
'聊城': [115.97, 36.45],
'芜湖': [118.38, 31.33],
'唐山': [118.02, 39.63],
'平顶山': [113.29, 33.75],
'邢台': [114.48, 37.05],
'德州': [116.29, 37.45],
'济宁': [116.59, 35.38],
'荆州': [112.239741, 30.335165],
'宜昌': [111.3, 30.7],
'义乌': [120.06, 29.32],
'丽水': [119.92, 28.45],
'洛阳': [112.44, 34.7],
'秦皇岛': [119.57, 39.95],
'株洲': [113.16, 27.83],
'石家庄': [114.48, 38.03],
'莱芜': [117.67, 36.19],
'常德': [111.69, 29.05],
'保定': [115.48, 38.85],
'湘潭': [112.91, 27.87],
'金华': [119.64, 29.12],
'岳阳': [113.09, 29.37],
'长沙': [113, 28.21],
'衢州': [118.88, 28.97],
'廊坊': [116.7, 39.53],
'菏泽': [115.480656, 35.23375],
'合肥': [117.27, 31.86],
'武汉': [114.31, 30.52],
'大庆': [125.03, 46.58],
'西藏': [91.1865, 30.1465],
'香港': [114.2578, 22.3242],
'澳门': [113.5547, 22.1484],
'上海': [121.48, 31.22],
'福建': [119.3, 26.08],
'广西': [108.33, 22.84],
'广东': [113.23, 23.16],
'山西': [112.53, 37.87],
'云南': [102.73, 25.04],
'海南': [110.35, 20.02],
'辽宁': [123.38, 41.8],
'浙江': [119.5313, 29.8773],
'吉林': [125.35, 43.88],
'宁夏': [106.27, 38.47],
'江西': [115.89, 28.68],
'吉林': [126.57, 43.87],
'青海': [101.74, 36.56],
'内蒙古': [111.65, 40.82],
'四川': [104.06, 30.67],
'陕西': [108.95, 34.27],
'重庆': [106.54, 29.59],
'台湾': [121.420757, 24.0383],
'江苏': [118.78, 32.04],
'贵州': [106.71, 26.57],
'北京': [116.46, 39.92],
'新疆': [87.68, 43.77],
'山东': [117, 36.65],
'甘肃': [103.73, 36.03],
'河南': [113.65, 34.76],
'黑龙江': [126.63, 45.75],
'河北': [114.48, 38.03],
'湖南': [113, 28.21],
'安徽': [117.27, 31.86],
'湖北': [114.31, 30.52],
'西藏': [91.1865, 30.1465],
'香港': [114.2578, 22.3242],
'澳门': [113.5547, 22.1484]
};
var data = [{
name: '鄂尔多斯',
value: 150,
value2: 150
},
{
name: '上海',
value: 196,
value2: 50
},
{
name: '攀枝花',
value: 205,
value2: 180
},
{
name: '威海',
value: 25,
value2: 150
},
{
name: '厦门',
value: 26,
value2: 30
},
{
name: '深圳',
value: 41,
value2: 50
},
{
name: '银川',
value: 290,
value2: 290
},
{
name: '三亚',
value: 54,
value2: 100
},
{
name: '呼和浩特',
value: 118,
value2: 30
},
{
name: '成都',
value: 198,
value2: 153
},
{
name: '克拉玛依',
value: 72,
value2: 50
},
{
name: '北京',
value: 249,
value2: 250
},
{
name: '乌鲁木齐',
value: 230,
value2: 50
},
{
name: '济南',
value: 102,
value2: 35
},
{
name: '哈尔滨',
value: 114,
value2: 57
},
{
name: '武汉',
value: 273,
value2: 300
}];
data.sort(function(a, b) {
return b.value - a.value;
});
var $map = $("#map"),
colors = ['rgb(0,255,0)', 'rgb(255,243,57)', 'rgb(255,166,81)', 'rgb(255,0,0)'],
maxValue = data[0].value,
maxValue2 = data[0].value2,
minValue = data[data.length - 1].value,
minValue2 = data[data.length - 1].value2,
space = !_.isNil(maxValue) && !_.isNil(minValue) && Math.ceil((maxValue - minValue) / colors.length + 0.0001) || 0,
space2 = !_.isNil(maxValue2) && !_.isNil(minValue2) && Math.ceil((maxValue2 - minValue2) / colors.length + 0.0001) || 0;
// 地图options
var options = {
tooltip: {
show: false
},
visualMap: {
type: 'piecewise',
pieces: [{
min: space * 3,
label: space * 3 + (space == 0 ? "+": '%+')
},
{
min: space * 2,
max: space * 3,
label: space * 2 + (space == 0 ? "+": '%+')
},
{
min: space * 1,
max: space * 2,
label: space * 1 + (space == 0 ? "+": '%+')
},
{
min: space * 0,
max: space * 1,
label: space * 0 + '+'
}],
textStyle: {
color: '#004a8f'
},
inRange: {
symbol: 'circle'
},
orient: 'horizontal',
bottom: 10,
left: 'center',
borderWidth: '#002e40',
backgroundColor: '#001820',
padding: [10, 20, 10, 20],
textGap: 2,
itemGap: 25
},
series: [{
type: 'map',
mapType: 'china',
zoom: 1,
roam: false,
top: 20,
label: {
emphasis: {
show: false
}
},
itemStyle: {
normal: {
areaColor: '#001035',
borderColor: '#1774ab',
borderWidth: 1
},
emphasis: {
areaColor: '#2a333d'
}
}
}]
};
options.visualMap.pieces = options.visualMap.pieces.filter(function(piece) {
return piece.min < 100;
});
options.visualMap.inRange.color = colors.slice(0, options.visualMap.pieces.length);
console.log(echarts.getMap('china'));
var map = echarts.init($map.get(0));
map.setOption(options);
_.delay(_.bind(function() {
drawEffect(map, {
$el: $map,
data: data,
minValue: minValue,
minValue2: minValue2,
space: space,
space2: space2
});
}), 1200)
})
<div class="chart" id="map">
</div>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,body {
width: 100%;
height: 100%;
background:#000811;
}
.chart {
width: 100%;
height: 100%;
}
.chart > .dot-wrap {
position: absolute;
z-index: 2;
text-align: center;
width: 10px;
height: 16px;
}
.chart > .dot-wrap > .title {
position: relative;
width: auto;
color: #fff;
display: block;
white-space: nowrap;
opacity: 0;
margin-top: -20px;
}
.chart > .dot-wrap > .dot {
position: relative;
text-align: center;
overflow: hidden;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-ms-transform: translateY(0px);
-o-transform: translateY(0px);
transform: translateY(0px);
}
.title-effect {
-webkit-animation: title-effect-up 2.2s linear 0s 1 both;
-moz-animation: title-effect-up 2.2s linear 0s 1 both;
-ms-animation: title-effect-up 2.2s linear 0s 1 both;
-o-animation: title-effect-up 2.2s linear 0s 1 both;
animate: title-effect-up 2.2s linear 0s 1 both;
}
@-webkit-keyframes title-effect-up {
0% {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
opacity: 0;
display: none;
}
30% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
display: block;
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
opacity: 1;
}
70% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
display: block;
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
opacity: 1;
}
100% {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
opacity: 0;
display: none;
}
}
@-moz-keyframes title-effect-up {
0% {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
opacity: 0;
display: none;
}
30% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
display: block;
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
opacity: 1
}
70% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
display: block;
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
opacity: 1
}
100% {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
opacity: 0;
display: none;
}
}
@-ms-keyframes title-effect-up {
0% {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
opacity: 0;
display: none;
}
30% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
display: block;
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
opacity: 1
}
70% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
display: block;
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
opacity: 1
}
100% {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
opacity: 0;
display: none;
}
}
@-o-keyframes title-effect-up {
0% {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
opacity: 0;
display: none;
}
30% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
display: block;
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
opacity: 1
}
70% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
display: block;
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
opacity: 1
}
100% {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
opacity: 0;
display: none;
}
}
.dot-animate {
-webkit-animation: first-pin 1s ease-in-out 0s 1 both, up-down-dot 1s linear 1s infinite both;
-moz-animation: first-pin 1s ease-in-out 0s 1 both, , up-down-dot 1s linear 1s infinite both;
-ms-animation: first-pin 1s ease-in-out 0s 1 both, , up-down-dot 1s linear 1s infinite both;
-o-animation: first-pin 1s ease-in-out 0s 1 both, , up-down-dot 1s linear 1s infinite both;
animation: first-pin 1s ease-in-out 0s 1 both, , up-down-dot 1s linear 1s infinite both;
}
.dot-active {
-webkit-animation: up-down-dot 1s linear 0s 1 both;
-moz-animation: up-down-dot 1s linear 0s 1 both;
-ms-animation: up-down-dot 1s linear 0s 1 both;
-o-animation: up-down-dot 1.1s linear 0s 1 both;
animation: up-down-dot 1.1s linear 0s 1 both;
}
.chart > .ellipsis {
position: absolute;
z-index: 1;
width: 49px;
height: 27px;
opacity: 1;
}
@-webkit-keyframes first-pin {
0% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
70% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
to {
margin-top: 0;
padding-top: 0;
opacity: 1;
-webkit-transform: scale(1)
}
}
@-moz-keyframes first-pin {
0% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
70% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
to {
margin-top: 0;
padding-top: 0;
opacity: 1;
-webkit-transform: scale(1)
}
}
@-ms-keyframes first-pin {
0% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
70% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
to {
margin-top: 0;
padding-top: 0;
opacity: 1;
-webkit-transform: scale(1)
}
}
@-o-keyframes first-pin {
0% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
70% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
to {
margin-top: 0;
padding-top: 0;
opacity: 1;
-webkit-transform: scale(1)
}
}
@keyframes first-pin {
0% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
70% {
margin-top: 15px;
padding-top: 0;
opacity: 0;
-webkit-transform: scale(0.1)
}
to {
margin-top: 0;
padding-top: 0;
opacity: 1;
-webkit-transform: scale(1)
}
}
.ellipsis-3 {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-animation: ellipsis-first-3 1s ease-in 0s 1 both;
-moz-animation: ellipsis-first-3 1s ease-in 0s 1 both;
-ms-animation: ellipsis-first-3 1s ease-in 0s 1 both;
-o-animation: ellipsis-first-3 1s ease-in 0s 1 both;
animation: ellipsis-first-3 1s ease-in 0s 1 both;
}
.ellipsis-2 {
-webkit-transform: scale(0.9);
-moz-transform: scale(0.9);
-ms-transform: scale(0.9);
-o-transform: scale(0.9);
transform: scale(0.9);
-webkit-animation: ellipsis-first-2 1s ease-in 0s 1 both;
-moz-animation: ellipsis-first-2 1s ease-in 0s 1 both;
-ms-animation: ellipsis-first-2 1s ease-in 0s 1 both;
-o-animation: ellipsis-first-2 1s ease-in 0s 1 both;
animation: ellipsis-first-2 1s ease-in 0s 1 both;
}
.ellipsis-1 {
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
-webkit-animation: ellipsis-first-1 1s ease-in 0s 1 both;
-moz-animation: ellipsis-first-1 1s ease-in 0s 1 both;
-ms-animation: ellipsis-first-1 1s ease-in 0s 1 both;
-o-animation: ellipsis-first-1 1s ease-in 0s 1 both;
animation: ellipsis-first-1 1s ease-in 0s 1 both;
}
.ellipsis-0 {
-webkit-transform: scale(0.7);
-moz-transform: scale(0.7);
-ms-transform: scale(0.7);
-o-transform: scale(0.7);
transform: scale(0.7);
-webkit-animation: ellipsis-first-0 1s ease-in 0s 1 both;
-moz-animation: ellipsis-first-0 1s ease-in 0s 1 both;
-ms-animation: ellipsis-first-0 1s ease-in 0s 1 both;
-o-animation: ellipsis-first-0 1s ease-in 0s 1 both;
animation: ellipsis-first-0 1s ease-in 0s 1 both;
}
@-webkit-keyframes ellipsis-first-3 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0.65;
}
}
@-moz-keyframes ellipsis-first-3 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0.65;
}
}
@-ms-keyframes ellipsis-first-3 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0.65;
}
}
@-o-keyframes ellipsis-first-3 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0.65;
}
}
@keyframes ellipsis-first-3 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0.65;
}
}
@-webkit-keyframes ellipsis-first-2 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.8);
opacity: 0.65;
}
}
@-moz-keyframes ellipsis-first-2 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.8);
opacity: 0.65;
}
}
@-ms-keyframes ellipsis-first-2 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.8);
opacity: 0.65;
}
}
@-o-keyframes ellipsis-first-2 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.8);
opacity: 0.65;
}
}
@keyframes ellipsis-first-2 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.8);
opacity: 0.65;
}
}
@-webkit-keyframes ellipsis-first-1 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.6);
opacity: 0.65;
}
}
@-moz-keyframes ellipsis-first-1 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.6);
opacity: 0.65;
}
}
@-ms-keyframes ellipsis-first-1 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.6);
opacity: 0.65;
}
}
@-o-keyframes ellipsis-first-1 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.6);
opacity: 0.65;
}
}
@keyframes ellipsis-first-1 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.6);
opacity: 0.65;
}
}
@-webkit-keyframes ellipsis-first-0 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.4);
opacity: 0.65;
}
}
@-moz-keyframes ellipsis-first-0 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.4);
opacity: 0.65;
}
}
@-ms-keyframes ellipsis-first-0 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.4);
opacity: 0.65;
}
}
@-o-keyframes ellipsis-first-0 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.4);
opacity: 0.65;
}
}
@keyframes ellipsis-first-0 {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(0.4);
opacity: 0.65;
}
}
@keyframes ellipsis-wave-3 {
0% {
transform: scale(1);
}
50% {
transform: scale(0.9);
}
100% {
transform: scale(1);
}
}
@keyframes ellipsis-wave-2 {
0% {
transform: scale(0.8);
}
50% {
transform: scale(0.7);
}
100% {
transform: scale(0.8);
}
}
@keyframes ellipsis-wave-1 {
0% {
transform: scale(0.6);
}
50% {
transform: scale(0.5);
}
100% {
transform: scale(0.6);
}
}
@keyframes ellipsis-wave-0 {
0% {
transform: scale(0.4);
}
50% {
transform: scale(0.3);
}
100% {
transform: scale(0.4);
}
}
.dot-die {
-webkit-animation: dot-die 0.8s ease-in-out 0s 1 both;
-moz-animation: dot-die 0.8s ease-in-out 0s 1 both;
-ms-animation: dot-die 0.8s ease-in-out 0s 1 both;
-o-animation: dot-die 0.8s ease-in-out 0s 1 both;
animation: dot-die 1s ease-in-out 0s 1 both;
}
.title-die {
-webkit-animation: title-die 0.8s ease-in-out 0s 1 both;
-moz-animation: title-die 0.8s ease-in-out 0s 1 both;
-ms-animation: title-die 0.8s ease-in-out 0s 1 both;
-o-animation: title-die 0.8s ease-in-out 0s 1 both;
animation: title-die 1s ease-in-out 0s 1 both;
}
.ellipsis-die {
-webkit-animation: ellipsis-die 0.8s ease-in-out 0s 1 both;
-moz-animation: ellipsis-die 0.8s ease-in-out 0s 1 both;
-ms-animation: ellipsis-die 0.8s ease-in-out 0s 1 both;
-o-animation: ellipsis-die 0.8s ease-in-out 0s 1 both;
animation: ellipsis-die 1s ease-in-out 0s 1 both;
}
@-webkit-keyframes dot-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-moz-keyframes dot-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-ms-keyframes dot-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-o-keyframes dot-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@keyframes dot-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-webkit-keyframes title-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-moz-keyframes title-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-ms-keyframes title-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-o-keyframes title-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@keyframes title-die {
from {}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-webkit-keyframes ellipsis-die {
from {
opacity: 0.65;
}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-moz-keyframes ellipsis-die {
from {
opacity: 0.65;
}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-ms-keyframes ellipsis-die {
from {
opacity: 0.65;
}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@-o-keyframes ellipsis-die {
from {
opacity: 0.65;
}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}
@keyframes ellipsis-die {
from {
opacity: 0.65;
}
to {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
}
}