返回介绍

中文

英文

Gio.js Hello World

发布于 2021-10-30 01:00:45 字数 2330 浏览 835 评论 0 收藏 0

With Threejs and Giojs included in your webpage, you are ready to create your first Gio Globe. We will
start off by creating a globe in basic style.

1. Create a <div> where the globe will be rendered.

<div id="globeArea" style="width: 200px; height: 200px"></div>

2. Add the following code snippet to the body of you html page.

<script>
        $(function () {

                // Get
the container to hold the IO globe
                var
container = document.getElementById( "globalArea" );

                //
Create Gio.controller
                var
controller = new GIO.Controller( container );

                // Add
data
                controller.addData(
data );

                //
Initialize and render the globe
                controller.init();
        });
</script>

Tip: We can also use JQuery or onReady handler to load data.
3. Now you should be able to see the 3D globe on your webpage like this

4. Try it on codepen:

See the Pen Giojs Hello World by
syt123450 (@syt123450) on CodePen.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文