Pexels 调用示例

2021年5月1日直播粉丝提的要求,搞了个示例

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>PexelsTest</title>
  <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
</head>
<body>

<!-- 需要预览才能看到 -->
<!-- 复制到腾讯云开始 -->

<style>
  table {
    border-collapse: collapse;
  }

  th, td {
    border: 1px solid lightgray;
    padding-left: 5px;
    padding-right: 5px;
  }
</style>

<table>
  <tbody id="img">
  </tbody>
</table>
These pictures are from www.pexels.com

<script>
  $.ajax({
    type: "GET",
    url: "https://api.pexels.com/v1/search?query=people",
    dataType: "json",
    beforeSend: function (request) {
      request.setRequestHeader("Authorization", "563492ad6f917000010000013471c5bdbed94f4191289c92c5c828cb");
    },
    success: function (result) {
      let photos = result.photos;
      if (photos === undefined) {
        return;
      }
      let colNum = 3;
      let col = 1;
      for (let i = 0; i < photos.length; i++) {
        let img = $("#img");

        if (col === 0) {
          img.append('<tr>');
        }

        let url = photos[i].src.small;
        img.append('<td><img alt="" src="' + url + '"/></td>');

        if (col === colNum) {
          img.append('<tr>');
          col = 0;
        }
        col++;
      }
    }
  });
</script>

<!-- 复制到腾讯云结束 -->

</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值