Struggling to implement Textillate in a WordPress.org site, I just can't seem to make it function properly

I'm seeking assistance with my wordpress.org blog where I am attempting to incorporate Textillate animation from this source: . After downloading all the required files and uploading them to my server, following the provided instructions, and adding a header element along with multiple unordered list elements as specified on the instruction page, I am unable to achieve the desired outcome.

When testing on JS Fiddle by inputting all the relevant information including HTML, CSS, and JavaScript, the animation works perfectly. However, when transferring the exact same code to my own website, it fails to display the intended animation. My current objective is to have the animation fade in and out of three different list items, but instead, all items are showing simultaneously.

The code used on JS Fiddle can be accessed here: http://jsfiddle.net/amandamays/Rvu9N/69/

<div class="black-bar">

     <h2 class="tlt">
        <ul class="texts">
            <li>Stressed out?</li>   
            <li>Deadlines looming?</li>
            <li>Writer's block?</li>
        </ul>
    </h2>
</div>

h2.tlt {
    color: #59bce3;
}

.black-bar {
    color: rgb(255, 255, 255);
    background-color: rgb(68, 68, 68);
    border: .133em solid rgb(68, 68, 68);
    border-radius: .333em;
    max-width: 100%;
    padding: .3em .5em;
    margin-top: .5em;
    margin-bottom: .5em;
    text-align: center;
}

ul {
    list-style: none;   
}

$('.tlt').textillate({ in : {
        effect: 'fadeIn'
    },
    out: {
        effect: 'fadeOut',
        sync: true
    },
    loop: true
});

If you have any suggestions or solutions, they would be greatly appreciated.

Sincerely,

Amanda Mays

Answer №1

Is there a way to resolve this issue? You can easily do so by utilizing and downloading the wordpress plugin wp-textillate.

Simply navigate to WP Textillate in the admin backend, located on the left side of your screen. Input all your desired text and animations. Once complete, you can integrate it into your content using shortcodes or widgets.

I trust this information assists you.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Issue with AngularJS $q factory: Unable to access property 'then' due to being undefined

I've been attempting to create a reusable auto search feature in an AngularJS factory. Below is my code snippet, but I keep encountering the error: "Cannot read property 'then' of undefined". I've searched on Google and Stack Overflow f ...

Updating the URL-path in the Angular file-upload module: A step-by-step guide

When working on my project, I came across a helpful module that I use from https://github.com/nervgh/angular-file-upload. It functions well when the URL is set during initialization. However, I encountered an issue when trying to change the URL after the ...

Tips for linking a dictionary to an Angular <p> tag in HTML

Although I have little experience with angularJS, I am struggling to find a clear explanation on how to bind a dictionary with an html tag so that any changes made in the dictionary reflect in the number displayed within the <p> tag. For instance, if ...

Managing onClick events in child components from parent components

My App component is structured as follows: class App extends Component { clickHandler = () => { console.log('click'); } render() { return ( <div className="App"> <div onClick={this.clickHandler}>Test1&l ...

Combining GET and POST requests in ExpressJS on a single route

As I work on setting up a questionnaire in Express JS with EJS as the renderer, I have already created individual pages for each question. These pages are accessible through static links using the app.get('/question/:number?', routes.questions) f ...

What could be the reason behind the for loop not incrementing and the splice not being modified in my code?

Encountered a seemingly simple problem while coding, but the expected returns started deviating as I progressed. Your assistance would be greatly appreciated. If you do provide help, please elaborate on your approach and where I hit a roadblock. The Chal ...

Upon returning to the previous page, the checkbox remains checked and cannot be unchecked

Here is the code I'm using to append checkbox values with a hash in the URL. However, when navigating back, the checkboxes remain checked. Take a look at the code snippet below: <html> <head> <script src="http://ajax.googleapis.com/aja ...

I'm currently leveraging Vue.js and Python Flask for my backend development. I'm looking to establish some local variables. What is the best way to accomplish this?

Here is my Vue js file where I am utilizing two URLs from localhost. My goal is to create a configuration file that will allow me to make changes in one place and have those changes reflected throughout. <template> <div> <div class="glob ...

Is there a way to dynamically insert page breaks in jspdf to ensure that tables do not split across multiple pages?

I am currently working on developing a website that can generate PDFs from database information, using PHP and MySQL to create tables with variable lengths. Sometimes, these tables may even span across multiple pages. If the first table takes up too much ...

Tips for customizing the appearance of your browser's scroll bar:

Is there a way to customize the browser scroll bar using html, css, and js similar to how Chrome does with Control + F? https://i.sstatic.net/62Hju.png I have experimented with adding a fixed position div creating a linear gradient style for the scroll ...

What is the process for adjusting the location of the Bootstrap datepicker pop-up?

I've been using the bootstrap datepicker plugin and it's been working well, except for one issue - the datepicker pop-up keeps appearing at the top instead of the bottom. I've tried multiple solutions from various sources but none seem to wo ...

Get the characteristics of the raphael pie chart

How can I access the attributes of a Raphael pie chart? I'm interested in getting attributes such as stroke color, values (excluding legend), radius, and x/y position. Here's how my pie chart is defined: pie = r.piechart(120, 140, 50, [55, 22] ...

Tips for concealing JavaScript files from the Chrome Developer Tools while using Next.js

Currently working on a project using Next.js. I've noticed that the utils/components are quite visible through the Chrome Developer Tools, as shown in this image: https://i.sstatic.net/jaLmg.png Is there a way to hide them from being easily accessib ...

"Enhance checkbox functionality on a webpage using JavaScript and AJAX to update

Currently, I am facing issues while working with multiple checkboxes using JavaScript and AJAX. Whenever a checkbox is clicked, the JavaScript sends the values to trata.php via AJAX (these values include whether it is checked or not and the ID of the check ...

What is the best way to extract user input and pass it to an AJAX request URL?

Recently, I successfully completed an AJAX request using AngularJS. You can check out the code here. Everything was working perfectly until I tried to add a dynamic variable (city) to the link like this: $http.get('http://api.wunderground.com/api/KEY ...

Having trouble locating and interacting with the textarea element in Salesforce using Selenium Webdriver

Encountering an issue with the Selenium Webdriver where it throws an error stating that the element is not visible and cannot be interacted with when attempting to access a textarea. 1. The textarea is located within a pop-up window, which can be accessed ...

Having trouble running the server in Node.js

When working with Node.Js, I encountered a specific issue My progress stopped at 6:16 when the instructions mentioned running "node server.js" to open 127.0.0.1:3000, but instead, an error occurred. https://i.sstatic.net/6esE5.png Upon checking my brows ...

How are the script name and script file connected in WordPress enqueuing?

When adding a jQuery script to the function.php file using the enqueue method, how does the script name relate to the actual file that contains the jQuery code? Is the script name arbitrary, or is it derived from either the file name or the actual script w ...

Exploring the ancestry of Mongo

I am currently working on constructing a family tree that can have an infinite number of levels for parents and children. I am also interested in finding relationships like brothers, sisters, cousins, and so on. However, I'm facing some confusion when ...

Can you explain how to use a toggle switch to make a select dropdown select a random option?

Currently, I am in the process of setting up a page for a character generator. Users will have the option to randomize traits or input their own. The interface includes toggle switches for the "choice vs random" options for each trait category, as well as ...