js+css模拟ai根据文本生成日程安排事项ui代码

代码语言:html

所属分类:布局界面

代码描述:js+css模拟ai根据文本生成日程安排事项ui代码

代码标签: js css 模拟 ai 根据 文本 生成 日程 安排 事项 ui 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">

<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/all.6.0.css">

  
  <link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/tailwindcss@2.2.3/dist/tailwind.min.css'>
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&amp;display=swap'>

  
<style>
:root {
  --author: "Matt Cannon";
  --contact: "mc@mattcannon.design";
  --description: "A conceputal version of an AI-powered to-do list generator that helps you plan your day efficiently in a simple format.";
  --keywords: "codepenchallenge, cpc-todo-list, AI, to-do generator, task planner, todo-list, productivity";
  --last-modified: "2024-09-23";
  --content-language: "en";
  --generator: "HTML5, CSS3, JavaScript, Tailwind CSS";
  --title: "AI To-Do Generator";
}

body {
  font-family: "Rubik", sans-serif;
  min-height: 100vh;
  margin: 0;
  position: relative;
}
.task-item {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #f9fafb;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: grab;
  text-align: left;
  width: 100%;
}
.task-item.dragging {
  opacity: 0.5;
}
.checkbox {
  margin-right: 10px;
}
.header-bar {
  background-color: #385263;
  padding: 8px 15px;
  color: white;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 5px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-bar i {
  margin-right: 10px;
}

.pill-button {
  display: block;
  width: auto;
  margin: 0 auto;
  padding: 12px 24px;
  background-color: #385263;
  color: white;
  font-size: 1rem;
  border: 2px solid white;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pill-button:hover {
  background-color: #4a6b81;
}

.pill-button i {
  margin-right: 8px;
}

#titleBar {
  display: none;
}

textarea {
  width: 100%;
  max-width: 80%;
  margin-left: 65px;
  font-size: 12px;
  resize: none;
  height: 175px;
}

#scheduleContainer {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
}

#messageInput {
  font-size: 16px;
}
.fa,
.fas {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
</style>


  
  
</head>


<body class="min-h-screen relative">
  <video autoplay muted loop playsinline class="absolute inset-0 w-full h-full object-cover z-0">
    <source src="//repo.bfw.wiki/bfwrepo/video/66f3301542601.png" type="video/mp4" />
    Your browser does not support the video tag.
  </video>
  <div class="relative z-10 container mx-auto p-4">
    <p class="text-l text-center text-white mb-5" style="padding-top: 50px; margin-bottom: -10px; color: #38526.........完整代码请登录后点击上方下载按钮下载查看

网友评论0