update v1.0.1
Scape.js is a JavaScript library that creates animated background elements (shapes or images) with floating animations and hover effects.
All API methods should be called after the DOM is fully loaded. Wrap your code in an event listener:
document.addEventListener('DOMContentLoaded', () => {
// Your Scape.js code here
// API calls and configuration
});
Add Scape.js to your project:
<script src="https://cdn.jsdelivr.net/gh/Ali-Cheikh/scape.js@main/scape.js"></script>
window.ScapeConfig = {
// ...other config options
onClick: (event) => {
console.log('Element clicked:', event.target);
// Your click handling code
},
onHover: (event) => {
console.log('Element hovered:', event.target);
// Your hover handling code
}
};
document.addEventListener('DOMContentLoaded', () => {
window.ScapeConfig = {
type: 'shape',
shape: 'star',
count: 30,
fillColor: 'hsla(200, 90%, 60%, 0.8)'
};
});
document.addEventListener('DOMContentLoaded', () => {
window.ScapeConfig = {
type: 'image',
imageUrl: 'logo.png',
count: 20,
size: 50,
opacity: 0.8
};
});
document.addEventListener('DOMContentLoaded', () => {
window.ScapeConfig = {
type: 'shape',
shape: 'heart',
count: 15,
hoverScale: 1.2,
onClick: (e) => {
e.target.style.fillColor = 'red';
}
};
});
document.addEventListener('DOMContentLoaded', () => {
const isMobile = window.innerWidth < 768;
window.ScapeConfig = {
type: 'shape',
shape: 'star',
count: isMobile ? 15 : 30,
size: isMobile ? 25 : 50,
floatDistance: isMobile ? 15 : 30
};
});
document.addEventListener('DOMContentLoaded', () => {
window.ScapeConfig = {
type: 'shape',
shape: 'heart',
count: 20,
hoverScale: 1.2,
onClick: (e) => {
const element = e.target;
element.style.fillColor = 'red';
setTimeout(() => {
element.style.fillColor = config.fillColor;
}, 1000);
}
};
});
document.addEventListener('DOMContentLoaded', () => {
// Change shape on button click
document.querySelector('#changeShape').addEventListener('click', () => {
Scape.setShape('star');
});
// Pause/Resume animations on hover
const container = document.querySelector('#animationContainer');
container.addEventListener('mouseenter', () => {
Scape.pause();
});
container.addEventListener('mouseleave', () => {
Scape.resume();
});
});
- Always wrap initialization code in
DOMContentLoaded
- Use error handling for API calls
- Clean up event listeners when removing elements
- Test on different screen sizes
- Consider performance with high element counts
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
- IE11 (limited support)
- Keep element count (
count
) reasonable - Use simpler shapes for better performance
- Limit animation complexity
- Consider reducing animations on mobile
- Use appropriate spacing values
If elements don't appear:
- Check console for errors
- Verify DOM is loaded
- Confirm configuration object is valid
- Check z-index conflicts
- Verify element positioning