Lately, I have been experimenting with AJAX and absolutely enjoying how it elevates the user experience.
One aspect of my (Wordpress) website that I believe could benefit from enhancement is incorporating animated transitions between pages. Nevertheless, I do have a few concerns when it comes to implementing AJAX.
My goal is to achieve the following:
- Implement deep linking - maintaining Wordpress' excellent permalink structure for accessibility by both search engines and users
- Incorporate a stylish effect like those showcased on Codrops using CSS3
I have observed some individuals opting for a method where they hide the body
tag by setting its display property to none, then utilizing jQuery to animate it. However, this approach limits the possibilities in terms of visual design.
Could AJAX be the solution here? And if so, how can it be implemented without negatively impacting SEO? Alternatively, are there other options that I might not have considered?