echarts 实现中国地图

实现效果如下


地图
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script src="js/echarts.js"></script>
        <script src="js/china.js"></script>
    </head>
    <body>
        <div id="main" style="width: 1200px;height: 700px;margin: 0 auto;"></div>
        <script>
             //初始化echarts实例
             var myChart = echarts.init(document.getElementById('main'));
             //使用制定的配置项和数据显示图表
             myChart.setOption(
                 {
                    //提示框组件
                    tooltip: {
                        show: false,//是否显示组件
                        trigger: 'item',//数据触发类型  item:数据图饼图触发      axis:坐标轴触发
                        formatter: '{b}'//地图 {b}(区域名称)
                    },
                    series: [{
                        name: '中国',
                        type: 'map',
                        mapType: 'china',
                        //selectedMode: 'multiple',
                        itemStyle: {//有2个状态  normal 是图形在默认状态下的样式;emphasis 是图形在高亮状态下的样式
                            normal: {
                                label: {
                                    show: true,
                                    textStyle: {//标签的文本样式
                                        fontSize: 18,
                                        color: '#000'
                                    }
                                },
                                borderColor: '#cdcdca',//边框颜色
                                borderWidth: 0.5,//边框线宽
                                areaStyle: {//区域样式
                                    color: '#000'
                                }
                            },
                            emphasis: {
                                borderWidth: 0.5,
                                borderColor: '#cdcdca',
                                areaColor: '#fff',
                                label: {
                                    shadowColor: '#000', //默认透明
                                    shadowBlur: 10,
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#3db77f'
                                    }
                                }
                            }
                        },
            
                        label: {
                            normal: {
                                show: false,
                            },
                            emphasis: {
                                show: false,
                            }
                        },
                        data: [{
                            name: '黑龙江',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f2e9e4",
                                    // borderWidth: 2
                                },
                                emphasis: {//高亮状态下的多边形和标签样式
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '青海',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f2e9e4",
                                    // borderWidth: 2
                                },
                                emphasis: {
//                                   borderWidth: 1,
//                                   borderColor: '#3db77f',
                                    areaColor: '#f2e9e4',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '陕西',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f2e9e4",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '广东',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f2e9e4",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#f2e9e4',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '广西',
                            itemStyle: {
                                normal: {
                                    areaColor: "#daeadd",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#daeadd',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '重庆',
                            itemStyle: {
                                normal: {
                                    areaColor: "#daeadd",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#daeadd',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '宁夏',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f2e9e4",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#f2e9e4',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '云南',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f2e9e4",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#f2e9e4',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '河南',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f5e6e8",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '江西',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f4e8e8",
                                    //borderWidth: 2
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '吉林',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f6f7e9",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#f6f7e9',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '海南',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f2e8e4",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#f2e8e4',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '台湾',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f2e8e4",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#f2e8e4',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '河北',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f6f7e9",
                                },
                                emphasis: {
                                    areaColor: '#fff',
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    label: {
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '甘肃',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f6f7e9",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#f6f7e9',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '湖北',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f6f7e9",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                     borderWidth: 1,
                                     borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '贵州',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f6f7e9",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#f6f7e9',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '西藏',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f6f7e9",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#f6f7e9',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '内蒙古',
                            itemStyle: {
                                normal: {
                                    areaColor: "#dce6ea",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#dce6ea',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '新疆',
                            itemStyle: {
                                normal: {
                                    areaColor: "#dce6ea",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#dce6ea',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '北京',
                            itemStyle: {
                                normal: {
                                    areaColor: "#dce6ea",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#dce6ea',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '天津',
                            itemStyle: {
                                normal: {
                                    areaColor: "#dce6ea",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#dce6ea',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '上海',
                            itemStyle: {
                                normal: {
                                    areaColor: "#dce6ea",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#3db77f',
                                    areaColor: '#dce6ea',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            }
                        }, {
                            name: '湖南',
                            itemStyle: {
                                normal: {
                                    areaColor: "#dce6ea",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                     borderWidth: 1,
                                     borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '福建',
                            itemStyle: {
                                normal: {
                                    areaColor: "#dce6ea",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '江苏',
                            itemStyle: {
                                normal: {
                                    areaColor: "#e4ebe8",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '山东',
                            itemStyle: {
                                normal: {
                                    areaColor: "#e4ebe8",
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '辽宁',
                            itemStyle: {
                                normal: {
                                    areaColor: "#e4ebe8",
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '山西',
                            itemStyle: {
                                normal: {
                                    areaColor: "#e4ebe8",
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '浙江',
                            itemStyle: {
                                normal: {
                                    areaColor: "#e4ebe8",
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                    color: '#3db77f'
                                }
                            }
                        }, {
                            name: '四川',
                            itemStyle: {
                                normal: {
                                    areaColor: "#e4ebe8",
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#e4ebe8',
                                    areaColor: '#e4ebe8',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                        }, {
                            name: '南海诸岛',
                            itemStyle: {
                                normal: {
                                    areaColor: "#e4ebe8",
                                },
                                emphasis: {
                                    // borderWidth: 1,
                                    // borderColor: '#e4ebe8',
                                    areaColor: '#e4ebe8',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: false,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                        }, {
                            name: '安徽',
                            itemStyle: {
                                normal: {
                                    areaColor: "#f6eae4",
                                    // borderWidth: 2
                                },
                                emphasis: {
                                    borderWidth: 1,
                                    borderColor: '#3db77f',
                                    areaColor: '#fff',
                                    label: {
                                        shadowColor: '#000', //默认透明
                                        shadowBlur: 10,
                                        show: true,
                                        textStyle: {
                                            fontSize: 12,
                                            color: '#3db77f'
                                        }
                                    }
                                }
                            },
                            label: {
                                normal: {
                                    show: true,
                                    textStyle: {
                                        fontSize: 12,
                                        color: '#0d6fb8'
                                    }
                                },
                                emphasis: {
                                    show: true,
                                }
                            }
                        }],
                        markPoint: {
                            show: true,
                            symbol: 'circle',
                            symbolSize: 10,
                        }
                    }]
                }
             );   
             myChart.on('click', function(params) {
                    var city = params.name;
                    console.log(city)
//                  for(var i in map_citys){
//                      if(map_citys[i]==city+'省'){
//                          window.open(ROOT +'/hospital/?province='+ i);
//                      }
//                  }
                });
        </script>
    </body>
</html>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 196,200评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 82,526评论 2 373
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 143,321评论 0 325
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,601评论 1 267
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,446评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,345评论 1 273
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,753评论 3 387
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,405评论 0 255
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,712评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,743评论 2 314
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,529评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,369评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,770评论 3 300
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,026评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,301评论 1 251
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,732评论 2 342
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,927评论 2 336

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,517评论 18 139
  • 该文章属于刘小壮原创,转载请注明:刘小壮[https://www.jianshu.com/u/2de707c93d...
    刘小壮阅读 26,849评论 63 143
  • 因为要做一个地图操作的项目,需要用到这个地图库,但是查询官方API麻烦,而且这个地图框架的API做的用起来确实太麻...
    虚幻的锈色阅读 33,502评论 1 15
  • 欢迎来到博星教育108将讲师朱老师课堂,这里是朱老师第258条早安问候。 广交友,无深交(A friend t...
    高飞1阅读 159评论 0 0
  • 老雾在《别把世界让给你讨厌的人》的文章中提到一个这样的故事: 美国智商最高的罗纳德.K.霍福林,因为小学时参加同学...
    独戏清风阅读 577评论 0 1