<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head th:replace="blog/amaze/header::head-fragment"> </head> <body id="blog"> <div th:replace="blog/amaze/header::nav-fragment"></div> <div th:replace="blog/amaze/header::header-fragment"></div> <div class="am-g am-g-fixed blog-fixed"> <div th:replace="blog/amaze/blog-list::blog-list-fragment"></div> <div th:replace="blog/amaze/side::side-fragment"></div> </div> <footer th:replace="blog/amaze/footer::footer-fragment"></footer> </body> <script th:src="@{/blog/plugins/jquery/jquery.min.js}"></script> <script th:src="@{/blog/plugins/search/search.js}"></script> </html> 这个前端代码当中,使用到的前端技术有哪些
时间: 2024-04-20 11:26:31 浏览: 271
-doctype-html-html-lang-en-dir-ltr-head-meta-name:
这段前端代码中使用到的前端技术有:
- HTML:用于构建网页结构。
- Thymeleaf:是一种服务器端Java模板引擎,用于在服务器端生成HTML页面。
- CSS:用于定义网页的样式和布局。
- Amaze UI:是一个基于CSS和JavaScript的前端框架,提供了一些样式和组件,方便开发响应式网页。
- JavaScript:用于实现网页的交互和动态效果。
- jQuery:是一个JavaScript库,简化了对HTML文档遍历、事件处理、动画效果等操作的编程工作。
- Search.js:一个自定义的JavaScript文件,可能用于实现搜索功能。
以上就是这段前端代码中使用到的主要前端技术。
阅读全文