Created
June 5, 2014 12:09
-
-
Save kuc-arc-f/7a00a3d64c07aaec4508 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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