ekspress
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: How to create wavy scrolling textI found the custom code that was used to animate the marquee:
<script>
document.addEventListener('DOMContentLoaded', () => {
function createMarquee(pathSelector, waveLength, direction) {
const path = document.querySelector(pathSelector);
let offset = direction === 'leftToRight' ? -waveLength : 0;
function increment() {
if (window.innerWidth < 768) {
if (direction === 'leftToRight') {
// this is for tabe and phone
offset += 5; // Left to right
if (offset > 0) {
offset = -waveLength;
}
} else {
// this is for tabe and phone
offset -= 5; // Right to left
if (offset < -waveLength) {
offset = 0;
}
}
} else {
if (direction === 'leftToRight') {
// this is for desktop
offset += 1; // Left to right
if (offset > 0) {
offset = -waveLength;
}
} else {
// this is for desktop
offset -= 1; // Right to left
if (offset < -waveLength) {
offset = 0;
}
}
}
path.setAttribute('startOffset', offset);
requestAnimationFrame(increment);
}
increment();
}
createMarquee('.marqury_one textPath', 3000, 'rightToLeft');
createMarquee('.marqury_two textPath', 3000, 'leftToRight');
})
</script>Forum: Everything else WordPress
In reply to: How to create wavy scrolling textThanks for the kind words about the home page. I’m afraid I don’t know exactly how it was done. I also was unable to figure out how to use javascript to animate the text so I paid someone to do it for me!
Forum: Plugins
In reply to: [WP Download Codes] 0-byte zip files on MacReplacing ob_clean with ob_end_clean worked! I just tested it with my Mac. I’ll have to do more testing, but it looks good so far. Thanks!
Forum: Plugins
In reply to: [WP Download Codes] 0-byte zip files on MacAuthor– are you out there? Are you interested in getting this plugin working? Will pay help?
Forum: Plugins
In reply to: [WP Download Codes] 0-byte zip files on MacThere are other ways to trouble-shoot problems besides recreating the exact environment (looking at logs perhaps?).
Author– are you out there? Are you interested in getting this plugin working? Will pay help?
Forum: Plugins
In reply to: [WP Download Codes] 0-byte zip files on MacHello developer? Can you help me? I’d really like to use this plugin.
Forum: Plugins
In reply to: [WP Download Codes] 0-byte zip files on MacIf I pay can you help me with this? I’d really like to use this plugin.
Forum: Plugins
In reply to: [WP Download Codes] 0-byte zip files on MacCan you help me troubleshoot this?
Forum: Plugins
In reply to: [RSS Image Resize] Images are still bigLike the original poster, the plugin does not seem to change the size of images in my feed. https://roxyroca.com/feed. I am entering that url into Mailchimp and the images are still full size. Can you help?
Forum: Plugins
In reply to: [ArtistDataPress] Updates are not being displayedI’m afraid I don’t know what would cause that. I’m still running 0.60. I tried to update to 0.71 but after updating things weren’t displaying correctly for me any more so I rolled back.
Forum: Plugins
In reply to: [ArtistDataPress] Updates are not being displayedI just commented out the line in artistdatapress.php that loads info from the cache. In my version of the plugin, it is line 797:
// $xml = get_transient( ‘adp_’ . $key );
It has been quite a while, but I think that is all I did.
Forum: Plugins
In reply to: [MP3-jPlayer] Songs don't play in Android browserI updated to the 1.8.4 version of the plugin, but the symptoms remain the same. Can anybody help me with this?
Forum: Plugins
In reply to: [ArtistDataPress] Updates are not being displayedI had to hack the plugin to disable the cache.
Hey developer– thanks very much for the plugin. I really do love it! Any chance you could take a look at this issue?
Forum: Plugins
In reply to: [MP3-jPlayer] Songs don't play in Android browserI have Android 4.1.2 on my Motorola Droid Razr and it does not work.
It sure sounds like this doesn’t work on any recent versions of Android.
Forum: Plugins
In reply to: [ArtistDataPress] Updates are not being displayedAs I suspected, the cache is not refreshing. I updated a show over an hour ago and the update still does not appear on my site. Please help!