工具介绍
Mark Copy的网站流量概况
最新流量数据
9月流量
59.2K
跳出率
44.61%
单次访问网页数
3.26
平均访问时长
00:03:13
近几个月流量走势
网站流量来源
| 渠道来源 | 百分比 | 社交媒体 |
|---|---|---|
| 社交媒体 | 4.35% | |
| 付费引荐 | / | |
| 外链引荐 | 3.15% | |
| 自然搜索 | 58.36% | |
| 直接访问 | 34.05% |
Top5访问国家/地区
| 国家/地区 | 百分比 | 法国 |
|---|---|---|
| 法国 | 28.36% | |
| 哥伦比亚 | 11.54% | |
| 墨西哥 | 8.38% | |
| 美国 | 6.80% | |
| 秘鲁 | 5.99% |
var markers = [ { name: "法国", coords: [46, 2] }, { name: "哥伦比亚", coords: [4, -72] }, { name: "墨西哥", coords: [23, -102] }, { name: "美国", coords: [38, -97] }, { name: "秘鲁", coords: [-10, -76] } ]; var map = new jsVectorMap({ selector: "#map", backgroundColor: "#fff", zoomButtons: false, onLoaded(map) { window.addEventListener("resize", () => { map.updateSize(); }); }, labels: { markers: { render: function (marker) { return marker.name; } } }, markers: markers, markerStyle: { initial: { fill: "#5c5cff" } }, markerLabelStyle: { initial: { fontFamily: "Sans-serif", fontSize: 13.5 } } });
.table td .progress { width: 120px; margin: 0; } .progress { height: 8px; margin-bottom: 1rem; overflow: hidden; border-radius: 0.25rem; background-color: #e9ecef; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .progress { display: flex; overflow: hidden; font-size: 0.75rem; background-color: #e9ecef; border-radius: 0.375rem; box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1); } .bg-gradient-primary { background: linear-gradient(87deg, #5e72e4 0, #825ee4 100%) !important; } .bg-gradient-secondary { background: linear-gradient(87deg, #f7fafc 0, #f7f8fc 100%) !important; } .bg-gradient-success { background: linear-gradient(87deg, #2dce89 0, #2dcecc 100%) !important; } .bg-gradient-info { background: linear-gradient(87deg, #11cdef 0, #1171ef 100%) !important; } .bg-gradient-warning { background: linear-gradient(87deg, #fb6340 0, #fbb140 100%) !important; } .bg-gradient-danger { background: linear-gradient(87deg, #f5365c 0, #f56036 100%) !important; } .bg-gradient-light { background: linear-gradient(87deg, #adb5bd 0, #adaebd 100%) !important; } .bg-gradient-dark { background: linear-gradient(87deg, #212529 0, #212229 100%) !important; } .bg-gradient-default { background: linear-gradient(87deg, #172b4d 0, #1a174d 100%) !important; } .bg-gradient-white { background: linear-gradient(87deg, #fff 0, white 100%) !important; } .bg-gradient-neutral { background: linear-gradient(87deg, #fff 0, white 100%) !important; } .bg-gradient-darker { background: linear-gradient(87deg, black 0, black 100%) !important; } .bg-gradient-blue { background: linear-gradient(87deg, #5e72e4 0, #825ee4 100%) !important; } .bg-gradient-indigo { background: linear-gradient(87deg, #5603ad 0, #9d03ad 100%) !important; } .bg-gradient-purple { background: linear-gradient(87deg, #8965e0 0, #bc65e0 100%) !important; } .bg-gradient-pink { background: linear-gradient(87deg, #f3a4b5 0, #f3b4a4 100%) !important; } .bg-gradient-red { background: linear-gradient(87deg, #f5365c 0, #f56036 100%) !important; } .bg-gradient-orange { background: linear-gradient(87deg, #fb6340 0, #fbb140 100%) !important; } .bg-gradient-yellow { background: linear-gradient(87deg, #ffd600 0, #beff00 100%) !important; } .bg-gradient-green { background: linear-gradient(87deg, #2dce89 0, #2dcecc 100%) !important; }
var areaOptions = { chart: { height: 280, type: "area", toolbar: { show: false }, zoom: { enabled: false } }, yaxis: { labels: { formatter: function(value) { var val = Math.abs(value) if (val >= 10 3 && val < 10 6) { val = (val / 1000).toFixed(1) + 'K' } else if (val >= 10 ** 6) { val = (val / 1000000).toFixed(1) + 'M' } else { val = val; } return val } } }, markers: { size: 5, hover: { size: 6 } }, dataLabels: { enabled: false }, series: [ { name: "流量", data: [67434, 38374, 59209] } ], fill: { type: "gradient", gradient: { shadeIntensity: 1, opacityFrom: 0.7, opacityTo: 0.9, stops: [0, 90, 100] } }, grid: { borderColor: "#eee", strokeDashArray: 5, }, xaxis: { categories: ["7月", "8月", "9月"] }, }; var areaChart = new ApexCharts( document.querySelector("#area-chart"), areaOptions ); areaChart.render();
评论
0 条已审核评论登录 后可以发表评论。
还没有审核通过的评论。