Browse Source

将协力制作工具分开,增加首页

tags/v2.5
枫谷剑仙 6 years ago
parent
commit
cf19f28daa
7 changed files with 12 additions and 12 deletions
  1. +3
    -3
      README.md
  2. +1
    -1
      languages/en.js
  3. +2
    -2
      languages/zh-TW.js
  4. +1
    -1
      languages/zh.js
  5. +2
    -2
      multi.html
  6. +1
    -1
      script.js
  7. +2
    -2
      solo.html

+ 3
- 3
README.md View File

@@ -1,8 +1,8 @@
智龙迷城车队阵型图制作工具 | Puzzle & Dragons Dash Formation Maker
智龙迷城队伍图制作工具 | Puzzle & Dragons Formation Maker
======
这个工具可以帮助你方便的制作和分享车队阵型或单人队形。易用的编辑界面,电脑、手机上都可以轻松使用。
This tool can help you easily create and share Dash Formation or Solo Formation. Easy to use editing interface and use on your PC and Phone.
**Some similar English names with Dash Formation**, information comes from [this post](https://puzzleanddragonsforum.com/threads/107636).
This tool can help you easily create and share Swipe Formation or Solo Formation. Easy to use editing interface and use on your PC and Phone.
**Some similar English names with Swipe Formation**, information comes from [this post](https://puzzleanddragonsforum.com/threads/107636).
* co-op speed farming
* ALB farming
* green row


+ 1
- 1
languages/en.js View File

@@ -1,4 +1,4 @@
document.title = solo?'P&D Solo Formation Maker':'P&D Dash Formation Maker';
document.title = solo?'P&D Solo Formation Maker':'P&D Multi Formation Maker';
var txtTitle = document.querySelector(".title-box .title");
var txtDetail = document.querySelector(".detail-box .detail");
txtTitle.placeholder = "Input Formation Title";

+ 2
- 2
languages/zh-TW.js View File

@@ -1,5 +1,5 @@
document.title = solo?'龍族拼圖單人陣型圖製作工具':'龍族拼圖車隊陣型圖製作工具';
document.title = solo?'龍族拼圖單人隊伍圖製作工具':'龍族拼圖協力隊伍圖製作工具';
var txtTitle = document.querySelector(".title-box .title");
var txtDetail = document.querySelector(".detail-box .detail");
txtTitle.placeholder = "輸入陣型標題";
txtTitle.placeholder = "輸入隊伍標題";
txtDetail.placeholder = "輸入說明";

+ 1
- 1
languages/zh.js View File

@@ -1 +1 @@
document.title = solo?'智龙迷城单人阵型图制作工具':'智龙迷城车队阵型图制作工具';
document.title = solo?'智龙迷城单人队伍图制作工具':'智龙迷城协力队伍图制作工具';

index.html → multi.html View File

@@ -6,7 +6,7 @@
<meta name="viewport" content="width=664" />
<link href="style.css" rel="stylesheet" type="text/css">
<link href="style-monsterimages.css" rel="stylesheet" type="text/css">
<link id="language-css" href="languages/zh.css" rel="stylesheet" type="text/css">
<link id="language-css" href="languages/en.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="languages/language-list.js"></script>
<script type="text/javascript" src="universal_function.js"></script>
<script type="text/javascript" src="script.js"></script>
@@ -30,7 +30,7 @@ var formation = new Formation(2,5);
</div>
</div>
<div class="formation-box">
<div class="title-box"><input type="text" class="title" placeholder="输入阵型标题" /></div>
<div class="title-box"><input type="text" class="title" placeholder="输入队伍标题" /></div>
<div class="formation-A-bigbox">
<div class="formation-A-box">
<ul class="formation-assist">

+ 1
- 1
script.js View File

@@ -178,7 +178,7 @@ function swapSingleMulitple()
//删掉第二支队伍
formation.team.splice(1,1);
}
location.href = creatNewUrl({url:solo?"index.html":"solo.html",notPushState:true});
location.href = creatNewUrl({url:solo?"multi.html":"solo.html",notPushState:true});
}
window.onload = function()
{


+ 2
- 2
solo.html View File

@@ -6,7 +6,7 @@
<meta name="viewport" content="width=664" />
<link href="style.css" rel="stylesheet" type="text/css">
<link href="style-monsterimages.css" rel="stylesheet" type="text/css">
<link id="language-css" href="languages/zh.css" rel="stylesheet" type="text/css">
<link id="language-css" href="languages/en.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="languages/language-list.js"></script>
<script type="text/javascript" src="universal_function.js"></script>
<script type="text/javascript" src="script.js"></script>
@@ -34,7 +34,7 @@ var formation = new Formation(1,6);
</div>
</div>
<div class="formation-box">
<div class="title-box"><input type="text" class="title" placeholder="输入阵型标题" /></div>
<div class="title-box"><input type="text" class="title" placeholder="输入队伍标题" /></div>
<div class="formation-A-bigbox">
<div class="formation-A-box">
<ul class="formation-badge">


Loading…
Cancel
Save