I have no issues with it on IOS devices at all. The only thing is that it is not rendered with webGl, which is a bit noticable on older IOS devices, but apart from that, It runs fine on several iPads and iPhones, so I don't get what the problem is.It is the perfect solution but before you spend hours on it check out the previous posts as it fails on an iPad or iPhone.
Bit of a shame really.

Hi Timescale,
I either misunderstood your post and my apologies for that or you seem to have some serious issues going on communicating with other people so I will polity bow out of the conversation and move on as life's too short.
Benutzerinformationen überspringen
Wohnort: Netherlands
Beruf: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
: https://pame.virtualtuur.comBenutzerinformationen überspringen
Wohnort: Netherlands
Beruf: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
: https://pame.virtualtuur.comDieser Beitrag wurde bereits 2 mal editiert, zuletzt von »Tuur« (10. Mai 2016, 16:05)
|
|
Quellcode |
1 2 |
<layer name="iframe" align="centertop" x="10" y="2" keep="true" url="skin/PlayButtonRed.png" zorder="2" scale="1.0" style="tooltip" tooltip="Play Samples" onclick="switch(autorotate.enabled); add_iframe('player/index.html', 450, 650); showinfo(closeiframe); " devices="!mobile"/>
<layer name="closeiframe" url="skin/click_here.png" zorder="999" parent="layer[iframe]" keep="true" align="centertop" x="0" y="2" visible="false" alpha="0" scale="1.0" onclick="hideinfo(iframe); "/>
|
|
|
Quellcode |
1 2 3 4 |
<action name="hideinfo"> tween(plugin[%1].alpha, 0, 0.5, default, set(plugin[%1].visible,false)); tween(plugin[%1].scale, 0.5); </action> |
Mmm.. well anything could have happened there really.. Hard to say without diag tools. Do you have a working example online somewhere that can be examined?
|
|
Quellcode |
1 |
document.getElementById('musicplayer').contentWindow.AjsFunction(argument);
|
Never tried that before.. Perhaps you can set visibility? Use JS to set the iframe SRC to blank for neatness?How do we close the iframe?
removeChild doesn't seem to work?
|
|
Quellcode |
1 2 3 4 5 6 |
<action name="remove_iframe" type="Javascript">
var iframes = document.querySelectorAll("1%");
var lastIframe = iframes[iframes.length - 1];
lastIframe.parentNode.removeChild(1%);
</action>
|