Forum

Webmasters! 3 Ways to 3D Web

08 April 2016 17:19
Dmitry's beginner-level article has been updated to reflect recent changes. All unnecessary parts have been removed to further simplify things.
Hope this article will help some 3D artists to become 3D coders.
The Founder | Twitter | Facebook | Linkedin
22 June 2016 06:18
I'm using <iframe allowfullscreen src="path/to/apple.html" width="800" height="500"></iframe> or method #1, how can I adjust the 3D content inside ? and how can I remove or hide the Control Panel button??
27 June 2016 18:59
Hi!
I'm using <iframe allowfullscreen src="path/to/apple.html" width="800" height="500"></iframe> or method #1, how can I adjust the 3D content inside ?
You can adjust the 3D view by placing the camera in your website in the desired position. Or may be I didn't understand your question?

and how can I remove or hide the Control Panel button??
You can do it by writing a custom application instead of using the standard Web Player. See programming tutorials on this website and the source files of the demos in your SDK to get an idea how to use the Blend4Web API.
The Founder | Twitter | Facebook | Linkedin
21 September 2016 13:00
Hi Yuri Kovelenov

i have some problem with blender4web


how can i remove 1,2 and 3 in the photo ?

sorry for my English
21 September 2016 14:23
Hi and welcome!

See this topic for the tip on how to modify the Web Player. Please note that you'll need to open source your project or buy a PRO license for that.
The Founder | Twitter | Facebook | Linkedin
22 September 2016 04:55
Thank Yuri Kovelenov
now, i'm understand
have a nice day
22 September 2016 11:37
Dear Yuri Kovelenov
on this topic:
https://www.blend4web.com/en/forums/topic/2395/

i see it, but i can't understand : how to remove button

Please give me video tutorial …
many thanks
23 September 2016 12:31
Reply to post of user phuong2507
Dear Yuri Kovelenov
on this topic:
https://www.blend4web.com/en/forums/topic/2395/

i see it, but i can't understand : how to remove button

Please give me video tutorial …
many thanks
Haha, you rotten English just like me
Good life needs no explanation!
01 March 2017 19:00
Hi everyone,

I would really like to know, how to add more Interactive 3D images on single web page.

For example:

<div id="canvas_cont_1"></div>
<div id="canvas_cont_2"></div>
<div id="canvas_cont_2"></div>


Because in init we can add just one id:

exports.init = function() {
m_app.init({
canvas_container_id: "canvas_cont",
callback: init_cb,
alpha: true
});
}
02 March 2017 10:22
You can create several init functions and use them in different namespaces.
For instance: init_1, init_2, init_3 - your functions.
...
b4w.register("your_module", function(exports, require) {
...
window.addEventListener("load", function() {
    b4w.require("your_module", "NS_1").init_1();
    b4w.require("your_module", "NS_2").init_2();
    b4w.require("your_module", "NS_3").init_3();
}, false);
...
 
Please register or log in to leave a reply.