Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter Srikant Aggarwal

    (@srikantchetu)

    Yeah, I checked on google but didn’t get any appropriate solution. Could you help me??

    Thread Starter Srikant Aggarwal

    (@srikantchetu)

    Thank you jaycbrf for informing me about the plugin. It could really help. But is any method available so I could done it in the custom way rather than using any plugin??

    Forum: Fixing WordPress
    In reply to: Create a ticker
    Thread Starter Srikant Aggarwal

    (@srikantchetu)

    could you help me regarding making the animation effect of a ticker which will move from right to left & it could be paused on mouse hover? And also, Ticker data doesn’t need to persist so once shown and moved out of view it can be discarded.

    Forum: Fixing WordPress
    In reply to: Create a ticker
    Thread Starter Srikant Aggarwal

    (@srikantchetu)

    Could I send you this file if you want to? Please provide your email?

    Forum: Fixing WordPress
    In reply to: Create a ticker
    Thread Starter Srikant Aggarwal

    (@srikantchetu)

    For eg, we click the particular event, so in this following code I used:-
    $.ocNotify.info(‘List filtered by ‘+filter_value+’.’);
    and in the octnotify.js file:-

    info : function(msg,params){
                return this.add(msg,'info',params);
            },
    
    add:function(msg,type,setting){
                var params = {};
                if(typeof msg==="object"){
                    params = msg;
                }else{
                    switch(typeof type){
                        case 'object' :
                            params = $.extend(type,{msg:msg});
                            break;
                        case 'function':
                            params = {msg:msg,callback:type};
                            break;
                        default:
                            switch(typeof setting){
                                case 'object' :
                                    params = $.extend(setting,{msg:msg,type:type});
                                break;
                                case 'function' :
                                    params = {msg:msg,type:type,callback:setting};
                                break;
                                default:
                                    params = {msg:msg,type:type};
                            }
                    }
    
                }
                return this.create(params);
            },

    And in the create object :-
    one variable i.e var $domItem = this._domConstruct(itemId,msgStr) ; from this list is filtered.

    Forum: Fixing WordPress
    In reply to: Create a ticker
    Thread Starter Srikant Aggarwal

    (@srikantchetu)

    The Flash messages functionality comes from the custom jquery plugin i.e. ocNotify.js.

    Forum: Fixing WordPress
    In reply to: Create a ticker
    Thread Starter Srikant Aggarwal

    (@srikantchetu)

    I want to create a ticker for flash messages. For eg. You have changed the status of a particular field than a flash message will appear in footer i.e. “Your status has been changed”. It’s basically animated from RIght to the left direction.
    FOllowing goals I need to be fulfilled.
    1. The flash message moves from right to left in the footer.
    2. It can be paused on a mouse hover.
    3. Ticker data doesn’t need to persist so once shown and moved out of view it can be discarded.

    Thanks in advance

Viewing 7 replies - 1 through 7 (of 7 total)