如果没有要显示的数据,则转到下一个迭代

时间:2019-06-13 10:24:09

标签: javascript jquery html css

我正在处理HTML表并一个接一个地显示图像,因为UI有点复杂,所以我在显示它是如何工作的

如果一个图像多于:-

  • 它显示为表格->图像1->表格->图像2

如果除表外只有一个图像-> image1-> table-> image2

所以我要从数据库中调用我的图像,所以如果数据库中存在图像,那么我将以var images = {"": ["CountA1.jpg", "CountA2.jpg"], }的形式调用JSON

如果db中没有数据,我会调用一个空的JSON var images = {"":[""]},所以当我没有显示时我想做的是我不想显示Images它应该跳过该图片部分,因为用于显示我在那里花了一些时间的桌子和图像

  • 表在5seconds的Ui上比5seconds的图像都在Ui上,这里是因为没有数据,因为我空了。图像显示图像alt value并显示5如果没有哪张图像只能填充表格,就像它是如何填充5-5 seconds
  • 一样,那不是我想要的秒数

var imgLen = 0;
var cnt = 0;

var tableValue = [{
  "Item Name": "MANCHOW  V SOUP",
  "SellingPrice": 100
}, {
  "Item Name": "MANSION HOUSE 650",
  "SellingPrice": 900
}, {
  "Item Name": "Chole Kulche",
  "SellingPrice": 80
}, {
  "Item Name": "Butter Nan",
  "SellingPrice": 65
}, {
  "Item Name": "Dhai",
  "SellingPrice": 20
}, {
  "Item Name": "Rice",
  "SellingPrice": 55
}, {
  "Item Name": "Plain rice",
  "SellingPrice": 30
}]


interval = '';
var images = {
  CounterA: ["CounterA1.jpg", "CounterA2.jpg"]
}
initTable(tableValue);

function initTable(tableValue) {
  addTable(tableValue)
  showRows();
  imageFormatter();
  interval = window.setInterval(showRows, 5000); // seting interval to show table in parts
}




function hideImage() {
  var imgno = (cnt % imgLen) + 1; // here counting Image when it is last image want to refresh the oage using location.reload();
  console.log(imgno)
  $("#displayImage img").css("display", "none");
  $("#displayImage img:nth-child(" + imgno + ")").css("display", "block")

  $("#displayImage").show(); //show Image and hide table
  $("#DisplayTable").hide();

  setTimeout(function() {
    initTable(tableValue);
  }, 5000);
  cnt++;
}





function showRows() {
  // Any TRs that are not hidden and not already shown get "already-shown" applies
  if ($(".hidden:lt(10)").length > 0) { //checking is it is the last page or not
    $("#displayImage").hide(); //showing table hiding image
    $("#DisplayTable").show();
    $("tr:not(.hidden):not(.already-shown)").addClass("already-shown");
  } else {
    $("tr:not(.hidden):not(.already-shown)").addClass("already-shown");

    hideImage();

    clearInterval(interval); //if last then clearing time interval and calling the function again 
  }

  $(".hidden:lt(10)").removeClass("hidden"); // this one is to hide previous  rows and show next 
}

function addTable(tableValue) {
  var $tbl = $("<table />", {
      "class": "table fixed table-bordered"
    }),
    $tb = $("<tbody/>"),
    $trh = $("<tr/>");

  var split = Math.round(tableValue.length / 4);
  for (i = 0; i < split; i++) {
    $tr = $("<tr/>", {
      class: "hidden w3-animate-zoom"
    });

    for (j = 0; j < 4; j++) {
      $.each(tableValue[split * j + i], function(key, value) {
        if (typeof(value) === "number") {
          $("<td/>", {
            "class": "text-right color" + (j + 1)
          }).html(value).appendTo($tr);
        } else {
          $("<td/>", {
            "class": "text-left color" + (j + 1)
          }).html(value).appendTo($tr);
        }

      });
    }
    $tr.appendTo($tb);
  }
  $tbl.append($tb);
  $("#DisplayTable").html($tbl);

}



function imageFormatter() {

  var images = {
    "": [""]
  }
  // var images = {"": ["CountA1.jpg", "CountA2.jpg"], }  

  for (var key in images) {

    var imageList = images[key];
    for (i = 0; i < imageList.length; i++) {
      var img = $('<img />').attr({
        'src': 'Image/' + key + '/' + imageList[i], // this one is displaying Image one below other
        'alt': 'No Image to Display',
        'width': 90 + "%",
        'height': 680
      }).appendTo('#displayImage');
    }

  }
  imgLen = $("#displayImage img").length;
}
tbody>tr>td {
  white-space: normal;
  border-collapse: collapse;
  font-family: Verdana;
  font-weight: bold;
  font-size: .9em;
}

td:nth-child(2),
td:nth-child(4),
td:nth-child(6),
td:nth-child(8) {
  width: 85px;
  max-width: 85px;
  height: 63px
}

.fixed {
  table-layout: fixed;
}

.color1 {
  background: #4AD184;
}

.color2 {
  background: #EA69EF;
}

.color3 {
  background: #E1A558;
}

.color4 {
  background: #F4F065;
}

.hidden,
.already-shown {
  display: none;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<div id="DisplayTable"></div>
<div id="displayImage" style="display:none">

</div>

如果需要除此以外的任何其他JSON格式,我只想使其在没有图像时不显示图像

0 个答案:

没有答案