vue实现多步骤ai生成剧本分镜头视频短片表单代码
代码语言:html
所属分类:表单美化
代码描述:vue实现多步骤ai生成剧本分镜头视频短片表单代码,第一步主题输入,生成剧本,然后生成分镜头,最后合并视频。
代码标签: vue 多步骤 ai 生成 剧本 分镜头 视频 短片 表单 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>AI 短片生成器</title> <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/vue@2.6.1-dev.js"></script> <style> body { font-family: Arial, sans-serif; margin: 20px; } .step { display: none; } .step.active { display: block; } textarea, input { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 4px; } button { padding: 10px 20px; margin: 10px 5px; border: none; border-radius: 4px; background-color: #007bff; color: white; cursor: pointer; } button:disabled { background-color: #ccc; cursor: not-allowed; } .video-preview { margin: 20px 0; } .video-preview video { width: 100%; max-width: 400px; height: auto; border: 1px solid #ccc; border-radius: 4px; } .shot-item { display: flex; align-items: center; margin: 10px 0; } .shot-item input { flex: 1; margin-right: 10px; } .shot-item button { background-color: .........完整代码请登录后点击上方下载按钮下载查看
网友评论0