我一直在尝试使用一小段示例代码和dropzone.css使Dropzone.js看起来像网站上的主题(dropzonejs.com)。这是我的代码:
<html>
<head>
<script src="dropzone.js"></script>
<link rel="stylesheet" type="text/css" href="dropzone.css">
<link rel="stylesheet" type="text/css" href="basic.css">
</head>
<form action="/upload-target" class="dropzone"></form>
</html>
我检查了文件路径,这些都很好。最终结果如下 http://www.dropzonejs.com/examples/simple.html但我的预期结果就像主页“试一试”中的示例一样。部分。
如果您能提供帮助,请告诉我。
答案 0 :(得分:10)
对于主题本身,只要您遵循css
规则中的相同结构,它似乎就可以正常工作:main section .dropzone
。
<html>
<head>
<link rel="stylesheet" href="dropzone.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<section>
<h1 id="try-it-out">Try it out!</h1>
<div id="dropzone">
<form action="" class="dropzone dz-clickable" id="demo-upload">
<div class="dz-message">Drop files here or click to upload.
<br> <span class="note">(This is just a demo dropzone. Selected files are <strong>not</strong> actually uploaded.)</span>
</div>
</form>
</div>
</section>
</main>
</body>
</html>
另外,请确保您的示例中包含css
个文件