zoukankan      html  css  js  c++  java
  • HTML5开发在你的游戏应用中加入广告(转)

    如何利用lufylegend.js开源引擎在游戏中加入广告。利用lufylegend.js引擎1.7.2版中的新功能LStageWebView,可以在html中加入一个iframe用来显示一个外部页面,我们可以利用这个功能来显示广告。

    lufylegend.js引擎官网

    http://lufylegend.com/lufylegend

    我使用了google adsense广告,当然你也可以使用其他广告,方法一样,好了现在开始。

    第一步,你要有一个网站。

    第二步,要在google adsense申请注册一个广告。

    注:会根据你网站的内容进行审核,申请不通过的话,可以好好看一下google adsense的协议

    第三步,在网站上建一个html文件,加入广告代码。

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    </head>
    <body>
    <script type="text/javascript"><!--
    google_ad_client = "ca-pub-20477800********";
    google_ad_slot = "2255******";
    google_ad_width = 468;
    google_ad_height = 60;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
    </body>
    </html>

    上面的js代码,在google adsense的管理页面可直接获取,很简单。

    第四步,在游戏中加入以下代码。

        var webView = new LStageWebView();  
        webView.setViewPort(new LRectangle(10,680,LGlobal.width,60));  
        webView.loadURL("http://lufylegend.com/ad/game_vertical_01.html");  
        webView.show();  

    loadURL函数是所要显示的外部网页地址,我这个地址是我在第三步所建的html。 完成了,测试连接:

    http://lufylegend.com/demo/GemGemAd/

    运行效果如下:

    LStageWebView使用起来很简单,更详细的使用,可以参照一下官方的API文档

    http://lufylegend.com/lufylegend/api

    最后,lufylegend.js引擎官网

    http://lufylegend.com/lufylegend

    转载: http://blog.csdn.net/lufy_legend/article/details/8837691

  • 相关阅读:
    DevExpress.XtraScheduler控件的使用方法
    读写Excel文档
    让程序以管理员身份运行
    读写TXT文档
    判断程序是自动启动还是用户启动
    用指针读BMP图像
    判断网络是否连接通
    WSL初体验
    Realsense内参标定
    FreeSwitch权威指南
  • 原文地址:https://www.cnblogs.com/JoannaQ/p/3048160.html
Copyright © 2011-2022 走看看