Iframe嵌入天氣預(yù)報(bào)

實(shí)現(xiàn)效果

接入天氣預(yù)報(bào)數(shù)據(jù)

實(shí)現(xiàn)方式對比

1、中國氣象局氣象網(wǎng)絡(luò)中心目前提供3天天氣預(yù)報(bào)數(shù)據(jù),個(gè)人申請?jiān)S可約一周
接口地址:http://smart.weather.com.cn/wzfw/smart/weatherapi.shtml

2、云聚提供較為友好的商業(yè)服務(wù),目前來看性價(jià)比較高
接口地址:http://www.36wu.com/Service/Details/1?cid=3

3、新浪提供iframe嵌入定制天氣模塊,當(dāng)前天天氣預(yù)報(bào)
接口地址:http://weather.news.sina.com.cn/chajian/

4、天氣網(wǎng)提供iframe嵌入定制天氣,未來五天天氣預(yù)報(bào)
接口地址:http://www.tianqi.com/plugin/

代碼示例

Weather.htm

<html lang="zh-CN">
<head>
    <title>Weather from i.tianqi.com</title>
</head>
<body>
    <!--
            參數(shù)py:城市全拼,切換城市自行修改,如頁面無法顯示請直接訪問src中地址,查看能否正常顯示
     -->
    <iframe name="weather_inc" src="http://i.tianqi.com/index.php?c=code&id=57&py=nanjing"
        style="border: solid 1px #7ec8ea" width="650" height="600" frameborder="0" marginwidth="0"
        marginheight="0" scrolling="no"></iframe>
    <script type="text/javascript">
        var scrollY = 0;
        var maxY = 650; //卷動(dòng)畫面最大高度
        var direction = 0
        function scrollWindow() {
            if (direction == 0) {
                window.scrollBy(0, +1);
                if (scrollY > maxY) {
                    direction = 1;
                }
                else
                    scrollY = scrollY + 2; //每次卷動(dòng)的單位
            }
            else
            {
                window.scrollTo(0, 0);
                direction = 0;
                scrollY = 0;
            }
        }

        function initialize() {
            timer = setInterval("scrollWindow()", 180); //速度
        }

        initialize();
        document.body.onmouseover = function () { clearInterval(timer); }
        document.body.onmouseout = function () { initialize(); }
    </script>
</body>
</html>

控制顯示范圍Index.htm

<html lang="zh-CN">
<head>
    <title>Index</title>
</head>
<body>
    <iframe src="Weather.htm" style="border: solid 1px #7ec8ea" width="453" height="247"
        frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</body>
</html>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • 1. 國家氣象局 實(shí)時(shí)接口:實(shí)時(shí)天氣1:http://www.weather.com.cn/data/sk/101...
    DROP_DATABASE閱讀 165,483評(píng)論 13 75
  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 179,094評(píng)論 25 709
  • 最近在寫博客主題的時(shí)候發(fā)現(xiàn)一個(gè)很嚴(yán)重的問題,由于css的命名并不是很規(guī)范,導(dǎo)致自己在后期修改的時(shí)候很是頭疼,有些樣...
    楓s的思念閱讀 6,051評(píng)論 0 8
  • 無聲的語言 寫在臉上 刻在眉宇間 如果你只匆匆的瀏覽 你就無法讀懂 那深刻的蘊(yùn)含
    柏蓮華閱讀 291評(píng)論 0 2
  • ――西西 小徑延展著 盡管只是一棵棵的野草 我也可以肆意繁茂 成一片花的海洋 或者卑微的我, 沒有美人的垂憐 當(dāng)風(fēng)...
    花語清溪閱讀 505評(píng)論 8 6

友情鏈接更多精彩內(nèi)容