Hello, here is a quick video of what we are struggling with.
Thanks for your time and help!
Here is a sample of the Our Team section code (that does not work correctly on mobile) and Services section code (that works correctly on Mobile).
// For full API documentation, including code examples, visit http://wix.to/94BuAAs
$w.onReady(function () {
//TODO: write your page related code here...
});
export function Lucas_click(event) {
$w('#LucasPhone').show();
$w("#LucasVideo").show();
$w("#LucasVideo").play();
$w("#LucasClicked").show();
$w("#Lucas").hide();
$w('#JacobPhone').hide();
$w("#JacobVideo").hide();
$w("#JacobVideo").stop();
$w('#PeterPhone').hide();
$w("#PeterVideo").hide();
$w("#PeterVideo").stop();
$w("#SoniaPhone").hide();
$w("#SoniaVideo").hide();
$w("#SoniaVideo").stop();
$w("#MattPhone").hide();
$w("#MattVideo").hide();
$w("#MattVideo").stop();
$w("#JudahPhone").hide();
$w("#JudahVideo").hide();
$w("#JudahVideo").stop();
$w("#Sonia").show();
$w("#SoniaClicked").hide();
$w("#Matt").show();
$w("#MattClicked").hide();
$w("#Judah").show();
$w("#JudahClicked").hide();
$w("#Jacob").show();
$w("#JacobClicked").hide();
$w("#Peter").show();
$w("#PeterClicked").hide();
$w("#Homepage").show();
$w("#WebsiteIcon").show();
$w("#WebsiteIconClick").hide();
$w("#WebsiteVideo").hide();
$w("#WebsiteVideo").stop();
$w("#BrandingIcon").show();
$w("#BrandingIconClicked").hide();
$w("#BrandingVideo").hide();
$w("#BrandingVideo").stop();
$w("#VideoIcon").show();
$w("#VideoIconClicked").hide();
$w("#VideoVideo").hide();
$w("#VideoVideo").stop();
$w("#DroneIcon").show();
$w("#DroneIconClicked").hide();
$w("#DroneVideo").hide();
$w("#DroneVideo").stop();
$w("#PhotographyIcon").show();
$w("#PhotographyIconClicked").hide();
$w("#PhotographyVideo").hide();
$w("#PhotographyVideo").stop();
$w("#SocialMediaIcon").show();
$w("#SocialMediaIconClicked").hide();
$w("#SocialMediaVideo").hide();
$w("#SocialMediaVideo").stop();
$w("#DigitalAdvertisingIcon").show();
$w("#DigitalAdvertisingIconClicked").hide();
$w("#DigitalAdvertisingVideo").hide();
$w("#DigitalAdvertisingVideo").stop();
$w("#ConsultationIcon").show();
$w("#ConsultationIconClicked").hide();
$w("#ConsultationVideo").hide();
$w("#ConsultationVideo").stop();
}
export function WebsiteIcon_click(event) { //Add your code for this event here:
$w("#WebsiteIcon").hide();
$w("#WebsiteIconClick").show();
$w("#BrandingIcon").show();
$w("#BrandingIconClicked").hide();
$w("#BrandingVideo").hide();
$w("#BrandingVideo").stop();
$w("#VideoIcon").show();
$w("#VideoIconClicked").hide();
$w("#VideoVideo").hide();
$w("#VideoVideo").stop();
$w("#DroneIcon").show();
$w("#DroneIconClicked").hide();
$w("#DroneVideo").hide();
$w("#DroneVideo").stop();
$w("#PhotographyIcon").show();
$w("#PhotographyIconClicked").hide();
$w("#PhotographyVideo").hide();
$w("#PhotographyVideo").stop();
$w("#Homepage").hide();
$w("#WebsiteVideo").show();
$w("#WebsiteVideo").play();
$w("#SocialMediaIcon").show();
$w("#SocialMediaIconClicked").hide();
$w("#SocialMediaVideo").hide();
$w("#SocialMediaVideo").stop();
$w("#DigitalAdvertisingIcon").show();
$w("#DigitalAdvertisingIconClicked").hide();
$w("#DigitalAdvertisingVideo").hide();
$w("#DigitalAdvertisingVideo").stop();
$w("#ConsultationIcon").show();
$w("#ConsultationIconClicked").hide();
$w("#ConsultationVideo").hide();
$w("#ConsultationVideo").stop();
}