我是靠谱客的博主 聪慧冷风,最近开发中收集的这篇文章主要介绍爸爸的笑话 | dad jokes | 第10天,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="style.css" />
    <title>Dad Jokes</title>
  </head>
  <body>
    <div class="container">
      <h3>Don't Laugh Challenge</h3>
      <div id="joke" class="joke">// Joke goes here</div>
      <button id="jokeBtn" class="btn">Get Another Joke</button>
      <!--div class="joke" id="joke">//don't joke</div>
      <button class="btn" id="jokeBtn">Get Another Joke</button>
      这样写是错误的,无法获取到笑话的数据,不知道为什么
      -->
    </div>
    <script src="script.js"></script>
  </body>
</html>

css

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body{
  background-color: #686de0;
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height:100vh;
  overflow: hidden;
  margin:0;
  padding:20px;
}

.container{
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  padding: 50px 20px;
  width:800px;
  max-width:100%;
  text-align: center;
}

h3{
  margin:0;
  opacity: 0.5;
  letter-spacing: 2px;
}

.joke{
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 40px;
  margin:50px auto;
  max-width: 600px;
}

.btn{
  background-color: #9f68e0;
  color:#fff;
  border:0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  padding: 14px 40px;
  font-size:16px;
  cursor: pointer;
}

.btn:active{
  transform:scale(0.98);
}

.btn:focus{
  outline: 0;
}
const jokeE1 = document.getElementById('joke')
const jokeBtn = document.getElementById('jokeBtn')

jokeBtn.addEventListener('click',generateJoke)

generateJoke()

async function generateJoke(){
  const config = {
    headers:{
      Accept:'application/json',
    },
  }

  const res = await fetch('https://icanhazdadjoke.com',config)

  const data = await res.json()

  jokeE1.innerHTML = data.joke
}

最后

以上就是聪慧冷风为你收集整理的爸爸的笑话 | dad jokes | 第10天的全部内容,希望文章能够帮你解决爸爸的笑话 | dad jokes | 第10天所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部