监听滑动动画

This commit is contained in:
小潘
2026-06-08 17:36:30 +08:00
parent ec6222d183
commit 92c84e9dab
7 changed files with 224 additions and 155 deletions
+40
View File
@@ -11,4 +11,44 @@
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
<script>
window.difyChatbotConfig = {
token: 'DJdSTFBWmkh0OOAb',
baseUrl: 'https://szdify.2009xc.com',
inputs: {
// You can define the inputs from the Start node here
// key is the variable name
// e.g.
// name: "NAME"
},
systemVariables: {
// user_id: 'YOU CAN DEFINE USER ID HERE',
// conversation_id: 'YOU CAN DEFINE CONVERSATION ID HERE, IT MUST BE A VALID UUID',
},
userVariables: {
// avatar_url: 'YOU CAN DEFINE USER AVATAR URL HERE',
// name: 'YOU CAN DEFINE USER NAME HERE',
},
}
</script>
<script src="https://szdify.2009xc.com/embed.min.js" id="DJdSTFBWmkh0OOAb" defer>
</script>
<style>
#dify-chatbot-bubble-button {
background-color: #043b8f !important;
position: fixed !important;
bottom: 36px !important;
right: 24px !important;
z-index: 9999 !important;
}
#dify-chatbot-bubble-window {
width: 24rem !important;
height: 40rem !important;
position: fixed !important;
bottom: 80px !important;
right: 24px !important;
z-index: 9999 !important;
}
</style>
</html>