Stop reloading flash file when using show and hide methods

前端 未结 4 1149
无人及你
无人及你 2020-12-19 09:01

I have a web page where a flash file is embeded in that.The flash file is having a quiz consist of 4 questions.When user answer the first question the second question will b

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-19 09:12

    The only solutions which work for me on Firefox and Chrome is these css code on flash container:

    If you want "remove" flash from the document (kind of like display:none):

    width:0;
    height:0;
    

    If you want only hide element without "remove" from the document:

    visibility: hidden
    

    The position tips doesn't work on Chrome

提交回复
热议问题