こんにちは、プログラマーの山本です。

今回は生年月日を入力することで、
その人の運勢を占うツールを制作しました。

同様のシステムが必要な方は参考にしてください。

今回のシステムのデモはこちらです。

HTMLで生年月日の入力フォームと結果の土台を作成する

まずはHTMLで入力フォームと結果の表示を制作します。

年月日のセレクトボックスは、1つずつHTMLで作ると手間なので、
後でJavaScritptを使って動的に作成することにします。

<div class="dia_wrapper">
<div id="dia_0">
<div class="dia_h2">生年月日を使った運勢占い</div>
<div class="dia_h1 birthday"><select id="dia_year"></select>年<select id="dia_month"></select>月<select id="dia_date"></select>日</div>
<div class="dia_answer">
<div class="dia_start birthday">占う</div>
</div>
</div>

<div id="dia_1" style="display: none;">
<div class="dia_star_img"><img id="dia_star_img"></div>
<div class="dia_h2 birth">【あなたの本命星】</div>
<div class="dia_desc_birth">生年月日:<span id="b_res_birthday"></span><br>
本命星:<span id="b_res_star"></span></div>

<div class="dia_h2 birth">【基本的な性格】</div>
<div class="" id="b_res_personality"></div>

<div class="dia_h2 birth">【適職】</div>
<div class="" id="b_res_job"></div>

<div id="reload">もう一度占う</div>
</div>

CSSでデザインを整える

以下のコードを書いてデザインを整えます。

.dia_wrapper{
  max-width:960px;
  margin:0 auto;
  background-color:#FAF9F4;
  box-shadow: 1px 3px 10px rgb(0 0 0 / 10%);
  padding:50px 40px;
  font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "MS P明朝" , "MS PMincho" , serif;
}
.dia_h1{
  font-size:25px;
  text-align: center;
}
.dia_h2{
  font-size:40px;
  text-align: center;
  color: #ff878a;
  margin: 30px 0;
  line-height: 1;
}
.dia_h3{
  font-size:18px;
  text-align: center;
  border-top: 1px solid #000;
  padding: 20px 0;
  line-height: 1.5;
}
.dia_start,.dia_yes,.dia_no,#reload{
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.dia_start{
  cursor: pointer;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: #ff878a;
  width: 100%;
  font-size: 32px;
  letter-spacing: .2em;
  margin-bottom: 0px;
  display: block;
  box-shadow: 1px 3px 10px rgb(0 0 0 / 10%);
  color: #fff !important;
  line-height: 90px;
  border-radius: 45px;
  transition: all 0.5s ease 0s;
}
.dia_start:after{
  position: absolute;
  content: "";
  background-image: url(../sys/sindan-btn.png);
  width: 40px;
  height: 40px;
  right: 25%;
  top: calc(50% - 20px);
  background-size: contain;
  background-repeat: no-repeat;
}
.dia_question{
  max-width: 950px;
  position: relative;
  padding-left: 70px;
  font-size: 32px;
  margin-bottom: 50px;
  line-height: 48px;
}
.dia_question:before{
  content: "Q";
  background: #b69e84;
  position: absolute;
  color: #fff;
  height: 50px;
  width: 50px;
  font-size: 28px;
  border-radius: 50%;
  position: absolute !important;
  left: 0;
  text-align: center;
  line-height: 50px;
  top: 0;
}
.dia_answer{ width:100%; text-align:center; }
.dia_yes,.dia_no{
  cursor: pointer;
  width: 45%;
  max-width: 350px;
  display:inline-block;
  background: #fff;
  text-decoration: none;
  color: #333;
  box-shadow: 1px 3px 10px rgb(0 0 0 / 10%);
  border: 2px solid #ff878a;
  border-radius: 45px;
  font-size: 40px;
  text-align: center;
  line-height: 90px;
  color: #ff878a;
  transition: all 0.5s ease 0s;
}
.dia_yes{
  margin: 0 4% 0 0;
}
#dia_res{
  text-align: center;
  margin: 40px 0 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #000;
}
.dia_res_h{
  font-size:30px;
  position: relative;
  text-align:center;
  line-height: 1;
}
.dia_res_h span{
  background-color:#FAF9F4;
  padding:0 20px;
}
.dia_res_h:before,
.dia_res_h:after {
  border: 1px solid;
  position: absolute;
  top: 15px;
  width: 40%;
  content: "";
}
.dia_res_h:before {
  left: 0px;
}
.dia_res_h:after {
  right: 0px;
}
.dia_result{
  font-size:45px;
  line-height: 1.2;
  background: linear-gradient(transparent 55%, #fff68e 50%);
  width: fit-content;
  margin: 30px auto 40px;
}
.dia_description{
  font-size:20px;
  line-height: 1.5;
}
#dia_res a{
  display: block;
  box-shadow: 1px 3px 10px rgb(0 0 0 / 10%);
  max-width: 450px;
  background-color: #b69e84 !important;
  font-size: 24px;
  color: #fff;
  margin: 10px auto;
  border-radius: 45px;
  line-height: 60px;
  letter-spacing: 5px;
}
#dia_res span{
  color:#ff878a;
  position: relative;
}
#dia_res span:before{
  transform: rotate(-25deg);
  border: 1px solid #aaa;
  position: absolute;
  width: 1px;
  content: "";
  height: 20px;
  left: -15px;
  top: -2px;
}
#dia_res span:after{
  transform: rotate(25deg);
  border: 1px solid #aaa;
  position: absolute;
  width: 1px;
  content: "";
  height: 20px;
  right: -12px;
  top: -2px;
}
#reload,#reload2{
  cursor: pointer;
  text-decoration: underline;
  color: #b69e84;
  text-align: center;
  margin: 30px 0 0;
}

.dia_size2 .dia_h1{
  font-size:22px;
}
.dia_size2 .dia_h2{
  font-size:34px;
}
.dia_size3 .dia_h1{
  font-size:22px;
}
.dia_size3 .dia_h2{
  font-size:26px;
}
.dia_size3 .dia_h3{
  font-size:15px;
}
.dia_size4 .dia_h1{
  font-size:16px;
}
.dia_size4 .dia_h2{
  font-size:22px;
}
.dia_size4 .dia_h3{
  font-size:13px;
}


.dia_size3,.dia_size4{
  padding: 20px;
}
.dia_size2 .dia_start{
  font-size: 30px;
}
.dia_size2 .dia_start:after{
  left: calc(50% + 120px)
}
.dia_size3 .dia_start{
  font-size: 25px;
}
.dia_size3 .dia_start:after{
  left: calc(50% + 90px);
  width: 30px;
  top: 30px;
}
.dia_size4 .dia_start{
  font-size: 20px;
    line-height: 65px;
}
.dia_size4 .dia_start:after{
  left: calc(50% + 70px);
  width: 30px;
  top: 17px;
}
.dia_size2 .dia_yes,
.dia_size2 .dia_no,
.dia_size3 .dia_yes,
.dia_size3 .dia_no{
  font-size:30px;
  line-height: 70px;
}
.dia_size2 .dia_question,
.dia_size3 .dia_question{
  font-size:28px;
}
.dia_size4 .dia_yes,
.dia_size4 .dia_no{
  font-size:25px;
  line-height: 55px;
}
.dia_size4 .dia_question{
  font-size:20px;
  padding-left:40px;
}
.dia_size4 .dia_question:before{
  height: 35px;
  width: 35px;
  font-size: 20px;
  line-height: 35px;
}
.dia_size2 .dia_res_h:before,
.dia_size2 .dia_res_h:after{
  width:32%;
}
.dia_size3 .dia_res_h:before,
.dia_size3 .dia_res_h:after,
.dia_size4 .dia_res_h:before,
.dia_size4 .dia_res_h:after{
  width:25%;
}
.dia_size3 .dia_result{
  font-size: 35px;
}
.dia_size3 #dia_res span{
  font-size:12px;
}
.dia_size4 .dia_result{
  font-size: 30px;
}
.dia_size4 #dia_res span{
  font-size:10px;
}
.dia_size4 #dia_res a{
  font-size:20px;
  letter-spacing: 1px;
}


.dia_start.birthday{
  margin-top: 40px !important;
}
.dia_h1 select{
  margin: 0px 10px 30px 15px;
  padding: 7px 6px;
  display: inline-block;
  width: 80px;
  font-size: 20px;
}
.dia_h1 input[type="radio"]{
  margin: 0 5px 0 20px;
  width: 20px;
  height: 20px;
}
.dia_star_img{
  float: right;
  display: block;
}
.dia_size2 .dia_star_img,
.dia_size3 .dia_star_img,
.dia_size4 .dia_star_img{
  float: inherit;
  text-align: center;
}
.dia_h2.birth{
  text-align: left;
  margin: 30px 0 10px;
  display: inline-block;
}
.dia_h2.birth:nth-child(6){
  margin: 60px 0 10px;
}
#b_res_birthday,
#b_res_star{
  font-weight: bold;
}
.dia_desc_birth,
#b_res_personality,
#b_res_job{
  font-size: 17px;
}
.dia_h1.birthday {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.dia_size3 .dia_h1.birthday {
  max-width: 100%;
}
.dia_size4 .dia_h1.birthday {
  max-width: 240px;
}
.br34{
  display: none;
}
.dia_size3 .br34,
.dia_size4 .br34{
  display: block;
}
.dia_size3 .dia_h1 select{
  margin: 0px 5px 30px 0px;
  width: 76px;
  font-size: 18px;
}

JavaScriptで運勢を算出して表示する

まずは生年月日のフォーム作成用のJavaScriptを書きます。

このコードが実行されるまで、セレクトボックスは空白になるので、
生年月日のセレクトボックスの直下に置いておく方が良いでしょう。

var d_year = "";
for(var i=1923; i<=2031; i++){
  d_year += i==1980 ? "<option value='"+i+"' selected>"+i+"</option>" : "<option value='"+i+"'>"+i+"</option>";
}
document.getElementById("dia_year").innerHTML = d_year;
var d_month = "";
for(var i=1; i<=12; i++){
  d_month += "<option value='"+i+"'>"+i+"</option>";
}
document.getElementById("dia_month").innerHTML = d_month;
var d_date = "";
for(var i=1; i<=31; i++){
  d_date += "<option value='"+i+"'>"+i+"</option>";
}
document.getElementById("dia_date").innerHTML = d_date;

次に、運勢算出用のコードや表示の切り替え、エリアの横幅に応じたデザイン変更用のコードを書きます。

jQuery(document).ready(function( $ ){
  function dia_wrapper_resize(){
    const wrapper = document.getElementsByClassName("dia_wrapper")[0];
    wrapper.classList.remove("dia_size2");
    wrapper.classList.remove("dia_size3");
    wrapper.classList.remove("dia_size4");
    if(wrapper.clientWidth < 400){
      wrapper.classList.add("dia_size4");
    }
    else if(wrapper.clientWidth < 500){
      wrapper.classList.add("dia_size3");
    }
    else if(wrapper.clientWidth < 725){
      wrapper.classList.add("dia_size2");
    }
  }
  dia_wrapper_resize();
  window.addEventListener("resize",function(){
    dia_wrapper_resize();
  });
  document.querySelectorAll(".dia_start,.dia_yes,.dia_no").forEach(function(elem){
    elem.addEventListener("click",function(){
      let parent = elem.parentNode.parentNode;
      parent.style.display = "none";
      //表示
      if(elem.className.indexOf("birthday")>-1){
        show_birthday();
      }
    });
  });
  if(document.getElementById("reload") !=null){
    document.getElementById("reload").addEventListener("click",function(){
      location.reload();
    });
  }
  function show_birthday(){
    var y = $("#dia_year").val();
    var m = $("#dia_month").val();
    var d = $("#dia_date").val();
    document.getElementById("b_res_birthday").innerText = y +"年"+ m +"月"+ d +"日";
    m = ("00"+m).slice(-2);
    d = ("00"+d).slice(-2);
    var ymd = y+m+d;
    var result = calc_result_birthday(ymd);
    if(result == 1){
      document.getElementById("b_res_star").innerText = "◯◯";
      document.getElementById("b_res_personality").innerText = "◯◯◯◯◯◯";
      document.getElementById("b_res_job").innerText = "◯◯◯◯◯◯";
      document.getElementById("dia_star_img").src = "https://lallapallooza.jp/wp-content/uploads/2021/07/sui.jpg";
    }
    else if(result == 2){
      document.getElementById("b_res_star").innerText = "◯◯";
      document.getElementById("b_res_personality").innerText = "◯◯◯◯◯◯";
      document.getElementById("b_res_job").innerText = "◯◯◯◯◯◯";
      document.getElementById("dia_star_img").src = "https://lallapallooza.jp/wp-content/uploads/2021/07/do.jpg";
    }
    document.getElementById("dia_1").style.display = "block";
  }
  function calc_result_birthday(ymd){
    var result = 1;
    //運勢の計算式を書く。
    return result;
  }
});

計算過程は、どのような運勢占いを使うかによって異なるので、
ご希望の計算式を用意して適用してください。

まとめ

今回は、HTML、CSS、JavaScriptを使って、
生年月日から運勢を占うツールを制作しました。

今回は前回のツールと同様に、
このツールを色々な場所で使いまわしたいとお客様のご要望で、

設置した場所の横幅によって表示を切り替える、
疑似的なレスポンシブを導入しています。

今回のシステムのデモはこちらです。

制作の依頼はこちら

もし、今回のツールをご自分で実装するのが難しい場合や、
占いツールのようなシステムをご希望の場合は、
以下のフォームから弊社にご相談くださいませ。

また、今回のシステム以外にも、

Welcartにおけるシステムの追加やカスタマイズ、
Wordpressのテーマやプラグインのカスタマイズなど、
ウェブに関するご依頼ならほとんど対応可能です。

簡単なシステムなら1件¥3,000(税別)から承っております。

相場よりも費用を抑えて対応させていただくことが可能ですので、
以下のフォームから相談内容を記入して気軽にご連絡ください。

    必須 お名前

    必須 メールアドレス

    任意 サイトのURL

    必須 ご依頼内容や相談内容

    ※出来るだけ具体的に記載していただけると進行がスムーズになります。

    任意 画像やPDF

    ※必要があれば添付してください。





    原則2営業日以内に、ご返信させていただきます。