github github
  • Home
  • Pricing and Signup
  • Training
  • Gist
  • Blog
  • Login

jquery / jquery-ui

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 1,019
    • 242
  • Source
  • Commits
  • Network (242)
  • Graphs
  • Tree: 83244d9

click here to add a description

click here to add a homepage

  • Switch Branches (8)
    • bind
    • devpreview
    • formcontrols
    • master
    • menu
    • panel
    • tooltip
    • widget-super
  • Switch Tags (22)
    • 1.9m2
    • 1.9m1
    • 1.8rc3
    • 1.8rc2
    • 1.8rc1
    • 1.8b1
    • 1.8a2
    • 1.8a1
    • 1.8.5
    • 1.8.4
    • 1.8.3
    • 1.8.2
    • 1.8.1
    • 1.8
    • 1.7
    • 1.6rc6
    • 1.6rc5
    • 1.6rc3
    • 1.6rc2
    • 1.6
    • 1.5.2
    • 1.5.1
  • Comments
  • Contributors
Sending Request…

The official jQuery user interface library. — Read more

  Cancel

http://jqueryui.com/

  Cancel
  • HTTP
  • Git Read-Only

This URL has Read+Write access

Effects demos (partial): Coding standards.
scottgonzalez (author)
Thu Sep 09 18:56:28 -0700 2010
commit  83244d933c481c6abdb2
tree    aafd07312295cb8fd0e0
parent  b79e92818fa027bbd3da
M demos/addClass/default.html 34 ••••
M demos/addClass/index.html 4 ••••
M demos/animate/default.html 34 ••••
M demos/animate/index.html 4 ••••
M demos/effect/default.html 94 ••••
M demos/effect/easing.html 114 ••••
M demos/effect/index.html 9 ••••
Txt demos/addClass/default.html
  • View file @ 83244d9
... ...
@@ -1,29 +1,29 @@
1 1
 <!DOCTYPE html>
2 2
 <html lang="en">
3 3
 <head>
4  
-  <meta charset="UTF-8" />
  4
+  <meta charset="utf-8">
5 5
   <title>jQuery UI Effects - addClass Demo</title>
6  
-  <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
7  
-  <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
8  
-  <script type="text/javascript" src="../../ui/jquery.effects.core.js"></script>
9  
-  <link type="text/css" href="../demos.css" rel="stylesheet" />
10  
-  <style type="text/css">
11  
-    .toggler { width: 500px; height: 200px; position: relative;}
  6
+  <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
  7
+  <script src="../../jquery-1.4.2.js"></script>
  8
+  <script src="../../ui/jquery.effects.core.js"></script>
  9
+  <link rel="stylesheet" href="../demos.css">
  10
+  <style>
  11
+    .toggler { width: 500px; height: 200px; position: relative; }
12 12
     #button { padding: .5em 1em; text-decoration: none; }
13 13
     #effect { width: 240px;  padding: 1em;  font-size: 1.2em; border: 1px solid #000; background: #eee; color: #333; }
14 14
     .newClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; }
15 15
   </style>
16  
-  <script type="text/javascript">
  16
+  <script>
17 17
   $(function() {
18  
-    $("#button").click(function() {
19  
-      $('#effect').addClass('newClass', 1000, callback);
  18
+    $( "#button" ).click(function() {
  19
+      $( "#effect" ).addClass( "newClass", 1000, callback );
20 20
       return false;
21 21
     });
22  
-    
23  
-    function callback(){
24  
-      setTimeout(function(){
25  
-        $('#effect').removeClass('newClass');
26  
-      }, 1500);
  22
+
  23
+    function callback() {
  24
+      setTimeout(function() {
  25
+        $( "#effect" ).removeClass( "newClass" );
  26
+      }, 1500 );
27 27
     }
28 28
   });
29 29
   </script>
... ...
@@ -42,10 +42,10 @@
42 42
 
43 43
 </div><!-- End demo -->
44 44
 
45  
-<div class="demo-description">
46 45
 
47  
-<p>This demo adds a class which animates: text-indent, letter-spacing, width, height, padding, margin, and font-size.</p>
48 46
 
  47
+<div class="demo-description">
  48
+<p>This demo adds a class which animates: text-indent, letter-spacing, width, height, padding, margin, and font-size.</p>
49 49
 </div><!-- End demo-description -->
50 50
 
51 51
 </body>
Txt demos/addClass/index.html
  • View file @ 83244d9
... ...
@@ -1,9 +1,9 @@
1 1
 <!DOCTYPE html>
2 2
 <html lang="en">
3 3
 <head>
4  
-  <meta charset="UTF-8" />
  4
+  <meta charset="utf-8">
5 5
   <title>jQuery UI Effects Demos</title>
6  
-  <link type="text/css" href="../demos.css" rel="stylesheet" />
  6
+  <link rel="stylesheet" href="../demos.css">
7 7
 </head>
8 8
 <body>
9 9
 
Txt demos/animate/default.html
  • View file @ 83244d9
... ...
@@ -1,26 +1,34 @@
1 1
 <!DOCTYPE html>
2 2
 <html lang="en">
3 3
 <head>
4  
-  <meta charset="UTF-8" />
  4
+  <meta charset="utf-8">
5 5
   <title>jQuery UI Effects - Animate Demo</title>
6  
-  <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
7  
-  <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
8  
-  <script type="text/javascript" src="../../ui/jquery.effects.core.js"></script>
9  
-  <link type="text/css" href="../demos.css" rel="stylesheet" />
10  
-  <style type="text/css">
11  
-    .toggler { width: 500px; height: 200px; position: relative;}
  6
+  <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
  7
+  <script src="../../jquery-1.4.2.js"></script>
  8
+  <script src="../../ui/jquery.effects.core.js"></script>
  9
+  <link rel="stylesheet" href="../demos.css">
  10
+  <style>
  11
+    .toggler { width: 500px; height: 200px; position: relative; }
12 12
     #button { padding: .5em 1em; text-decoration: none; }
13 13
     #effect { width: 240px; height: 135px; padding: 0.4em; position: relative; background: #fff; }
14 14
     #effect h3 { margin: 0; padding: 0.4em; text-align: center; }
15 15
   </style>
16  
-  <script type="text/javascript">
  16
+  <script>
17 17
   $(function() {
18  
-    $("#button").toggle(
  18
+    $( "#button" ).toggle(
19 19
       function() {
20  
-        $("#effect").animate({backgroundColor: '#aa0000', color: '#fff', width: 500}, 1000);
  20
+        $( "#effect" ).animate({
  21
+          backgroundColor: "#aa0000",
  22
+          color: "#fff",
  23
+          width: 500
  24
+        }, 1000 );
21 25
       },
22 26
       function() {
23  
-        $("#effect").animate({backgroundColor: '#fff', color: '#000', width: 240}, 1000);
  27
+        $( "#effect" ).animate({
  28
+          backgroundColor: "#fff",
  29
+          color: "#000",
  30
+          width: 240
  31
+        }, 1000 );
24 32
       }
25 33
     );
26 34
   });
... ...
@@ -43,10 +51,10 @@
43 51
 
44 52
 </div><!-- End demo -->
45 53
 
46  
-<div class="demo-description">
47 54
 
48  
-<p>Click the button above to preview the effect.</p>
49 55
 
  56
+<div class="demo-description">
  57
+<p>Click the button above to preview the effect.</p>
50 58
 </div><!-- End demo-description -->
51 59
 
52 60
 </body>
Txt demos/animate/index.html
  • View file @ 83244d9
... ...
@@ -1,9 +1,9 @@
1 1
 <!DOCTYPE html>
2 2
 <html lang="en">
3 3
 <head>
4  
-  <meta charset="UTF-8" />
  4
+  <meta charset="utf-8">
5 5
   <title>jQuery UI Effects Demos</title>
6  
-  <link type="text/css" href="../demos.css" rel="stylesheet" />
  6
+  <link rel="stylesheet" href="../demos.css">
7 7
 </head>
8 8
 <body>
9 9
 
Txt demos/effect/default.html
  • View file @ 83244d9
... ...
@@ -1,60 +1,63 @@
1 1
 <!DOCTYPE html>
2 2
 <html lang="en">
3 3
 <head>
4  
-  <meta charset="UTF-8" />
  4
+  <meta charset="utf-8">
5 5
   <title>jQuery UI Effects - Effect Demo</title>
6  
-  <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
7  
-  <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
8  
-  <script type="text/javascript" src="../../ui/jquery.effects.core.js"></script>
9  
-  <script type="text/javascript" src="../../ui/jquery.effects.blind.js"></script>
10  
-  <script type="text/javascript" src="../../ui/jquery.effects.bounce.js"></script>
11  
-  <script type="text/javascript" src="../../ui/jquery.effects.clip.js"></script>
12  
-  <script type="text/javascript" src="../../ui/jquery.effects.drop.js"></script>
13  
-  <script type="text/javascript" src="../../ui/jquery.effects.explode.js"></script>
14  
-  <script type="text/javascript" src="../../ui/jquery.effects.fade.js"></script>
15  
-  <script type="text/javascript" src="../../ui/jquery.effects.fold.js"></script>
16  
-  <script type="text/javascript" src="../../ui/jquery.effects.highlight.js"></script>
17  
-  <script type="text/javascript" src="../../ui/jquery.effects.pulsate.js"></script>
18  
-  <script type="text/javascript" src="../../ui/jquery.effects.scale.js"></script>
19  
-  <script type="text/javascript" src="../../ui/jquery.effects.shake.js"></script>
20  
-  <script type="text/javascript" src="../../ui/jquery.effects.slide.js"></script>
21  
-  <script type="text/javascript" src="../../ui/jquery.effects.transfer.js"></script>
22  
-  <link type="text/css" href="../demos.css" rel="stylesheet" />
23  
-  <style type="text/css">
24  
-    .toggler { width: 500px; height: 200px; position: relative;}
  6
+  <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
  7
+  <script src="../../jquery-1.4.2.js"></script>
  8
+  <script src="../../ui/jquery.effects.core.js"></script>
  9
+  <script src="../../ui/jquery.effects.blind.js"></script>
  10
+  <script src="../../ui/jquery.effects.bounce.js"></script>
  11
+  <script src="../../ui/jquery.effects.clip.js"></script>
  12
+  <script src="../../ui/jquery.effects.drop.js"></script>
  13
+  <script src="../../ui/jquery.effects.explode.js"></script>
  14
+  <script src="../../ui/jquery.effects.fade.js"></script>
  15
+  <script src="../../ui/jquery.effects.fold.js"></script>
  16
+  <script src="../../ui/jquery.effects.highlight.js"></script>
  17
+  <script src="../../ui/jquery.effects.pulsate.js"></script>
  18
+  <script src="../../ui/jquery.effects.scale.js"></script>
  19
+  <script src="../../ui/jquery.effects.shake.js"></script>
  20
+  <script src="../../ui/jquery.effects.slide.js"></script>
  21
+  <script src="../../ui/jquery.effects.transfer.js"></script>
  22
+  <link rel="stylesheet" href="../demos.css">
  23
+  <style>
  24
+    .toggler { width: 500px; height: 200px; position: relative; }
25 25
     #button { padding: .5em 1em; text-decoration: none; }
26 26
     #effect { width: 240px; height: 135px; padding: 0.4em; position: relative; }
27 27
     #effect h3 { margin: 0; padding: 0.4em; text-align: center; }
28 28
     .ui-effects-transfer { border: 2px dotted gray; } 
29 29
   </style>
30  
-  <script type="text/javascript">
  30
+  <script>
31 31
   $(function() {
32  
-    
33  
-    //run the currently selected effect
34  
-    function runEffect(){
35  
-      //get effect type from 
36  
-      var selectedEffect = $('#effectTypes').val();
  32
+    // run the currently selected effect
  33
+    function runEffect() {
  34
+      // get effect type from 
  35
+      var selectedEffect = $( "#effectTypes" ).val();
37 36
       
38  
-      //most effect types need no options passed by default
  37
+      // most effect types need no options passed by default
39 38
       var options = {};
40  
-      //check if it's scale, transfer, or size - they need options explicitly set
41  
-      if(selectedEffect == 'scale'){ options = {percent: 0}; }
42  
-      else if(selectedEffect == 'transfer'){ options = { to: "#button", className: 'ui-effects-transfer' }; }
43  
-      else if(selectedEffect == 'size'){ options = { to: {width: 200,height: 60} }; }
44  
-      
45  
-      //run the effect
46  
-      $("#effect").effect(selectedEffect,options,500,callback);
  39
+      // some effects have required parameters
  40
+      if ( selectedEffect === "scale" ) {
  41
+        options = { percent: 0 };
  42
+      } else if ( selectedEffect === "transfer" ) {
  43
+        options = { to: "#button", className: "ui-effects-transfer" };
  44
+      } else if ( selectedEffect === "size" ) {
  45
+        options = { to: { width: 200, height: 60 } };
  46
+      }
  47
+
  48
+      // run the effect
  49
+      $( "#effect" ).effect( selectedEffect, options, 500, callback );
47 50
     };
48  
-    
49  
-    //callback function to bring a hidden box back
50  
-    function callback(){
51  
-      setTimeout(function(){
52  
-        $("#effect:hidden").removeAttr('style').hide().fadeIn();
53  
-      }, 1000);
  51
+
  52
+    // callback function to bring a hidden box back
  53
+    function callback() {
  54
+      setTimeout(function() {
  55
+        $( "#effect" ).removeAttr( "style" ).hide().fadeIn();
  56
+      }, 1000 );
54 57
     };
55  
-    
56  
-    //set effect from select menu value
57  
-    $("#button").click(function() {
  58
+
  59
+    // set effect from select menu value
  60
+    $( "#button" ).click(function() {
58 61
       runEffect();
59 62
       return false;
60 63
     });
... ...
@@ -94,13 +97,12 @@
94 97
 
95 98
 <a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
96 99
 
97  
-
98 100
 </div><!-- End demo -->
99 101
 
100  
-<div class="demo-description">
101 102
 
102  
-<p>Click the button above to show the effect.</p>
103 103
 
  104
+<div class="demo-description">
  105
+<p>Click the button above to show the effect.</p>
104 106
 </div><!-- End demo-description -->
105 107
 
106 108
 </body>
Txt demos/effect/easing.html
  • View file @ 83244d9
... ...
@@ -1,81 +1,90 @@
1 1
 <!DOCTYPE html>
2 2
 <html lang="en">
3 3
 <head>
4  
-  <meta charset="UTF-8" />
  4
+  <meta charset="utf-8">
5 5
   <title>jQuery UI Effects - Effect Demo</title>
6  
-  <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
7  
-  <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
8  
-  <script type="text/javascript" src="../../ui/jquery.effects.core.js"></script>
9  
-  <link type="text/css" href="../demos.css" rel="stylesheet" />
10  
-  <style type="text/css">
11  
-    .graph {
12  
-      float: left;
13  
-      margin-left: 10px;
14  
-    }
  6
+  <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
  7
+  <script src="../../jquery-1.4.2.js"></script>
  8
+  <script src="../../ui/jquery.effects.core.js"></script>
  9
+  <link rel="stylesheet" href="../demos.css">
  10
+  <style>
  11
+  .graph {
  12
+    float: left;
  13
+    margin-left: 10px;
  14
+  }
15 15
   </style>
16  
-  <script type="text/javascript">
  16
+  <script>
17 17
   $(function() {
18  
-    if (!$("<canvas/>")[0].getContext) {
19  
-      $("<div/>").text("Your browser doesn't support canvas, which is required for this demo. Give Firefox 3 a try!").appendTo("#graphs");
  18
+    if ( !$( "<canvas/>" )[0].getContext ) {
  19
+      $( "<div/>" ).text(
  20
+        "Your browser doesn't support canvas, which is required for this demo. " +
  21
+        "Give Firefox 3 a try!"
  22
+      ).appendTo( "#graphs" );
20 23
       return;
21 24
     }
22  
-    var i = 0;
23  
-    var width = 100,
  25
+
  26
+    var i = 0,
  27
+      width = 100,
24 28
       height = 100;
25  
-    $.each($.easing, function(name, impl) {
26  
-      // skip linera/jswing and any non functioning implementation
27  
-      if (!$.isFunction(impl) || /jswing/.test(name))
  29
+    $.each( $.easing, function( name, impl ) {
  30
+      // skip linear/jswing and any non functioning implementation
  31
+      if ( !$.isFunction( impl ) || /jswing/.test( name ) ) {
28 32
         return;
29  
-      var graph = $("<div/>").addClass("graph").appendTo("#graphs");
30  
-      var text = $("<div/>").text(++i + ". " + name).appendTo(graph);
31  
-      
32  
-      var canvas = $("<canvas/>").appendTo(graph)[0]
  33
+      }
  34
+      var graph = $( "<div/>" ).addClass( "graph" ).appendTo( "#graphs" ),
  35
+        text = $( "<div/>" ).text( ++i + ". " + name ).appendTo( graph ),
  36
+        canvas = $( "<canvas/>" ).appendTo( graph )[ 0 ];
33 37
       canvas.width = width;
34 38
       canvas.height = height;
35  
-      var drawHeight = height * 0.8;
36  
-      var cradius = 10;
37  
-      var ctx = canvas.getContext("2d");
  39
+      var drawHeight = height * 0.8,
  40
+        cradius = 10;
  41
+        ctx = canvas.getContext( "2d" );
38 42
       ctx.fillStyle = "black";
39  
-      
  43
+
40 44
       ctx.beginPath();
41  
-      ctx.moveTo(cradius, 0);
42  
-      ctx.quadraticCurveTo(0, 0, 0, cradius);
43  
-      ctx.lineTo(0, height - cradius);
44  
-      ctx.quadraticCurveTo(0, height, cradius, height);
45  
-      ctx.lineTo(width - cradius, height);
46  
-      ctx.quadraticCurveTo(width, height, width, height - cradius);
47  
-      ctx.lineTo(width, 0);
48  
-      ctx.lineTo(cradius, 0);
  45
+      ctx.moveTo( cradius, 0 );
  46
+      ctx.quadraticCurveTo( 0, 0, 0, cradius );
  47
+      ctx.lineTo( 0, height - cradius );
  48
+      ctx.quadraticCurveTo( 0, height, cradius, height );
  49
+      ctx.lineTo( width - cradius, height );
  50
+      ctx.quadraticCurveTo( width, height, width, height - cradius );
  51
+      ctx.lineTo( width, 0 );
  52
+      ctx.lineTo( cradius, 0 );
49 53
       ctx.fill();
50  
-      
  54
+
51 55
       ctx.strokeStyle = "#555";
52 56
       ctx.beginPath();
53  
-      ctx.moveTo(width * 0.1, drawHeight + .5);
54  
-      ctx.lineTo(width * 0.9, drawHeight + .5);
  57
+      ctx.moveTo( width * 0.1, drawHeight + .5 );
  58
+      ctx.lineTo( width * 0.9, drawHeight + .5 );
55 59
       ctx.stroke();
56 60
 
57 61
       ctx.strokeStyle = "#555";
58 62
       ctx.beginPath();
59  
-      ctx.moveTo(width * 0.1, drawHeight * .3 - .5);
60  
-      ctx.lineTo(width * 0.9, drawHeight * .3 - .5);
  63
+      ctx.moveTo( width * 0.1, drawHeight * .3 - .5 );
  64
+      ctx.lineTo( width * 0.9, drawHeight * .3 - .5 );
61 65
       ctx.stroke();
62 66
       
63 67
       ctx.strokeStyle = "white";
64 68
       ctx.beginPath();
65 69
       ctx.lineWidth = 2;
66  
-      ctx.moveTo(width * 0.1, drawHeight);
67  
-      $.each(new Array(width), function(position) {
68  
-        var val = impl(0, position, 0, 1, height);
69  
-        if (/linear|jswing/.test(name)) val = position / width;
70  
-        ctx.lineTo(position * 0.8 + width * 0.1, drawHeight - drawHeight * val * 0.7);
  70
+      ctx.moveTo( width * 0.1, drawHeight );
  71
+      $.each( new Array( width ), function( position ) {
  72
+        var val = impl( 0, position, 0, 1, height );
  73
+        if ( /linear|jswing/.test( name ) ) {
  74
+          val = position / width;
  75
+        }
  76
+        ctx.lineTo( position * 0.8 + width * 0.1,
  77
+          drawHeight - drawHeight * val * 0.7 );
71 78
       });
72 79
       ctx.stroke();
73 80
       graph.click(function() {
74  
-        $(canvas).animate({height: "hide"}, 2000, name).animate({"left": "0"}, 800).animate({height: "show"}, 2000, name);
  81
+        $( canvas )
  82
+          .animate( { height: "hide" }, 2000, name )
  83
+          .animate( { left: 0 }, 800 )
  84
+          .animate( { height: "show" }, 2000, name );
75 85
       });
76  
-      
77  
-      graph.width(width).height(height + text.height() + 10);
78  
-      //return false;
  86
+
  87
+      graph.width( width ).height( height + text.height() + 10 );
79 88
     });
80 89
   });
81 90
   </script>
... ...
@@ -84,18 +93,15 @@
84 93
 
85 94
 <div class="demo">
86 95
 
87  
-  <div id="graphs"></div>
88  
-  
89  
-  <div id="animted"></div>
  96
+<div id="graphs"></div>
90 97
 
91 98
 </div><!-- End demo -->
92 99
 
93  
-<div class="demo-description">
94 100
 
95  
-<p><strong>All easings provided by jQuery UI are drawn above, using a HTML canvas element</strong>. Click a diagram to see the easing in action.</p>
96 101
 
  102
+<div class="demo-description">
  103
+<p><strong>All easings provided by jQuery UI are drawn above, using a HTML canvas element</strong>. Click a diagram to see the easing in action.</p>
97 104
 </div><!-- End demo-description -->
98 105
 
99 106
 </body>
100 107
 </html>
101  
-
Txt demos/effect/index.html
  • View file @ 83244d9
... ...
@@ -1,9 +1,9 @@
1 1
 <!DOCTYPE html>
2 2
 <html lang="en">
3 3
 <head>
4  
-  <meta charset="UTF-8" />
  4
+  <meta charset="utf-8" />
5 5
   <title>jQuery UI Effect Demos</title>
6  
-  <link type="text/css" href="../demos.css" rel="stylesheet" />
  6
+  <link rel="stylesheet" href="../demos.css">
7 7
 </head>
8 8
 <body>
9 9
 
... ...
@@ -12,11 +12,6 @@
12 12
   <ul>
13 13
     <li class="demo-config-on"><a href="default.html">Effect showcase</a></li>
14 14
     <li><a href="easing.html">Easing showcase</a></li>
15  
-    <!-- WIP
16  
-    <li class="demo-config-on"><a href="scale.html">Scale effect</a></li>
17  
-    <li class="demo-config-on"><a href="size.html">Size effect</a></li>
18  
-    <li class="demo-config-on"><a href="transfer.html">Transfer effect</a></li>
19  
-    -->
20 15
   </ul>
21 16
 </div>
22 17
 

0 notes on commit 83244d9

Please log in to comment.
Dedicated Server Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
  • Blog
  • Support
  • Training
  • Job Board
  • Shop
  • Contact
  • API
  • Status
  • © 2010 GitHub Inc. All rights reserved.
  • Terms of Service
  • Privacy
  • Security
  • English
  • Deutsch
  • Français
  • 日本語
  • Português (BR)
  • 中文
  • See all available languages

Your current locale selection: English. Choose another?

  • English
  • Afrikaans
  • Català
  • Čeština
  • Deutsch
  • Español
  • Français
  • Hrvatski
  • Indonesia
  • Italiano
  • 日本語
  • Nederlands
  • Norsk
  • Polski
  • Português (BR)
  • Српски
  • Svenska
  • 中文