Complete installation instructions for integrating the Eisner Laser Center LASIK chatbot widget into any website or landing page.
3 simple steps
Fully responsive
Styling options
Interactive quiz to determine if users are good candidates for LASIK surgery
Calculates lifetime savings from LASIK vs. glasses/contacts
Schedule virtual consultations with Dr. Eisner
.lasik-chatbot-widget {
position: fixed;
bottom: 24px;
right: 24px;
z-index: 1000;
}
.lasik-chatbot-button {
width: 64px;
height: 64px;
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
border-radius: 50%;
border: none;
cursor: pointer;
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
animation: pulse 2s infinite;
}
.lasik-chatbot-button:hover {
transform: scale(1.1);
box-shadow: 0 12px 32px rgba(59, 130, 246, 0.6);
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.8; }
}
.lasik-tooltip {
position: absolute;
bottom: 100%;
right: 0;
margin-bottom: 8px;
width: 280px;
background: white;
border-radius: 12px;
padding: 1rem;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.3s ease;
}
.lasik-chatbot-widget:hover .lasik-tooltip {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.lasik-tooltip::after {
content: '';
position: absolute;
bottom: -8px;
right: 20px;
width: 16px;
height: 16px;
background: white;
transform: rotate(45deg);
}
.lasik-tooltip-header {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.lasik-tooltip-icon {
width: 20px;
height: 20px;
background: #3b82f6;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 0.75rem;
}
.lasik-tooltip-title {
font-weight: 600;
color: #1f2937;
font-size: 0.875rem;
}
.lasik-tooltip-description {
color: #6b7280;
font-size: 0.75rem;
line-height: 1.4;
}
@media (max-width: 768px) {
.lasik-tooltip {
width: 240px;
}
.lasik-chatbot-widget {
bottom: 20px;
right: 20px;
}
}
<!-- LASIK Chatbot Widget -->
<div class="lasik-chatbot-widget">
<div class="lasik-tooltip">
<div class="lasik-tooltip-header">
<div class="lasik-tooltip-icon">👁️</div>
<div class="lasik-tooltip-title">Eisner LASIK Assistant</div>
</div>
<div class="lasik-tooltip-description">
Check your candidacy, calculate savings, and schedule a consultation
</div>
</div>
<button class="lasik-chatbot-button" onclick="openLasikChatbot()">
👁️
</button>
</div>
function openLasikChatbot() {
const popup = window.open(
'https://same-3opcja8mcjw-latest.netlify.app/widget',
'lasik-chatbot',
'width=1000,height=700,scrollbars=yes,resizable=yes,status=yes'
);
if (popup) {
popup.focus();
}
}
Replace the JavaScript with:
function openLasikChatbot() { window.open('https://same-3opcja8mcjw-latest.netlify.app/widget', '_blank'); }
More complex but better UX
.lasik-chatbot-widget { bottom: 24px; /* Distance from bottom */ right: 24px; /* Distance from right */ /* left: 24px; for left side */ }
.lasik-chatbot-button { background: linear-gradient(135deg, #your-color-1, #your-color-2); } .lasik-tooltip-icon { background: #your-color; }
.lasik-chatbot-button { width: 80px; /* Larger button */ height: 80px; font-size: 2rem; /* Larger icon */ }
https://same-3opcja8mcjw-latest.netlify.app/widget
All consultation booking buttons automatically link to:
https://api.leadconnectorhq.com/widget/booking/WUn2J67o4HrMRf2YGr0C
Live Demo: https://same-3opcja8mcjw-latest.netlify.app/widget
For technical support or customization requests, contact your development team.