天气组件
天气组件可以通过一行核心代码实现在您的应用里嵌入指定城市当天及五天内天气预报的功能。
核心代码:
<lbs-weather city="北京"></lbs-weather>
运行效果如下:
完整代码如下:
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
- <title>天气组件</title>
- <script src="http://api.map.baidu.com/components?ak=CA4de4f8d8e3c3891eb39a78f8343cd4&v=1.0">
- </script>
- </head>
- <body>
- <!-- 天气组件-->
- <lbs-weather city='北京' ></lbs-weather>
- </body>
- </html>