- 前端(用户界面)58one.com
HTML/CSS/JavaScript (Web App)
对于Web App,HTML用于构建页面结构,CSS用于样式设计,JavaScript用于交互逻辑。
index.html
html
Hello, World!
Greet<script src="script.js"></script>
style.css
css
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
script.js
javascript
document.getElementById(‘greet’).addEventListener(‘click’, function() {
document.getElementById(‘greeting’).textContent = ‘Hello, you clicked the button!’;
});
Flutter (跨平台App)
Flutter使用Dart语言,适合构建跨平台的移动应用。