4be4edb4ad
- Add 5 new hero images to assets/images/hero-gallery/ - Create hero-section.js with image rotation (6s interval) - Only preload/animate at >= 1450px to save mobile bandwidth - Fade transition with slight grow effect - Add overflow:hidden to prevent scrollbar during transition - Images use 30% right crop via transform system 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
474 B
JavaScript
Executable File
24 lines
474 B
JavaScript
Executable File
/**
|
|
* HomeProz Main JavaScript
|
|
*
|
|
* @package HomeProz
|
|
*/
|
|
|
|
import './main.scss';
|
|
|
|
// Import component JS
|
|
import '../template-parts/header/navigation.js';
|
|
import '../template-parts/components/hero-section.js';
|
|
import '../template-parts/property/property-filters.js';
|
|
import '../template-parts/property/property-gallery.js';
|
|
|
|
(function($) {
|
|
'use strict';
|
|
|
|
// Document ready
|
|
$(function() {
|
|
// Theme initialized
|
|
});
|
|
|
|
})(jQuery);
|