Skip to content

Instantly share code, notes, and snippets.

@kuc-arc-f
Created June 5, 2014 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuc-arc-f/7a00a3d64c07aaec4508 to your computer and use it in GitHub Desktop.
Save kuc-arc-f/7a00a3d64c07aaec4508 to your computer and use it in GitHub Desktop.
AppShow.prototype.proc_init = function() {
console.log('#proc_init');
var s1='http://kuc-arc-f.github.io/h5_t0604_page/img/p1.png';
var s2='http://kuc-arc-f.github.io/h5_t0604_page/img/p2.JPG';
var s3='http://kuc-arc-f.github.io/h5_t0604_page/img/p3.JPG';
var ctl = new Controller();
var divcont = document.querySelector('div#id-div-img');
var img_t= ctl._requestRemoteImageAddElem( s1, divcont ,'id_img1');
var divcont2 = document.querySelector('div#id-div-img2');
var img_t= ctl._requestRemoteImageAddElem( s2, divcont2 ,'id_img1');
var divcont3 = document.querySelector('div#id-div-img3');
var img_t= ctl._requestRemoteImageAddElem( s3, divcont3 ,'id_img1');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment