언어 설정

Menu
Sites
Language
Tizen : Accordion And Splash Screen

Hello,

 

i wanted to ask if Tizen support splash screen and is there some tutorials here O:) thank you

 

 

Also and SO URGENT please : i tried to use Accordion code of JQuery Mobile 1.4.0 Alpha 2, but it has some problems in tizen :(

it work only if i remove this :

 

<link rel="stylesheet"
href="tizen-web-ui-fw/latest/themes/tizen-white/tizen-web-ui-fw-theme.css" name="tizen-theme" />
<title>Taxis Bleux</title>
<!--NOTE:
        jquery.js and web-ui-fw.js must be included.
        DO NOT REMOVE below code!
-->
<script src="tizen-web-ui-fw/latest/js/jquery.js"></script>
<script src="tizen-web-ui-fw/latest/js/tizen-web-ui-fw-libs.js"></script>
<script src="tizen-web-ui-fw/latest/js/tizen-web-ui-fw.js"
data-framework-theme="tizen-white"></script>

here is the accordion code :

 

<div data-role="collapsible-set" data-theme="a" data-content-theme="a">
    <div data-role="collapsible">
        <h3>Section 1</h3>
        <p>I'm the collapsible content for section 1</p>
    </div>
    <div data-role="collapsible">
        <h3>Section 2</h3>
        <p>I'm the collapsible content for section 2</p>
    </div>
    <div data-role="collapsible">
        <h3>Section 3</h3>
        <p>I'm the collapsible content for section 3</p>
    </div>
</div>

Any other alternative for tizen ???

 

thank you

Edited by: Brock Boland on 17 3월, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

6 댓글
talari praveen kumar
Hi I tested your accordion code. It is working fine, here is the screenshot http://s1316.photobucket.com/user/Chinna5b6/media/accordion_zpscfa04b12.png.html. You have mentioned it is working fine only if you remove some code . Please specify clearly what you have removed.
Mejri Mejri
I removed this
Mejri Mejri
[CODE] [/CODE]
Mejri Mejri
script src="tizen-web-ui-fw/latest/js/jquery.js">
talari praveen kumar
Hi It worked for me even if I didnt remove the line <script src="tizen-web-ui-fw/latest/js/jquery.js">
Aymen Gazdar

Splash screen is not supported by TIZEN, but you can simply do it by auto-redirect your page who contains the splash to your home page ;)

$(document).ready(function(){
      setTimeout(function() {
       window.location.href = "home_page.html;"
      }, 5000);
    });