-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ripple effect is not working #353
Comments
Yes I have the same problem. I added the javascripts and the following code:
I have no console errors. |
are you using the latest master or the 0.2.1 pre release? this is based on the latest master and works perfectly: |
I inspected your code and found that I was forgot to include the ripple css |
okay nice :) |
How do i add ripple css on Meteor? |
Are you using input=button? Ripple can't work on self closing elements |
You also need to execute the following script for the ripple effect:
|
I am using Meteor platform. so Bootstrap Material Design was installed by meteor add fezvrasta:bootstrap-material-design. Button's ripple effect works correctly. but Check box, radio button and some effect is not working now. I just install material design, not added anything using by blow scripts. <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="css/ripples.min.css" rel="stylesheet">
<link href="css/material-wfont.min.css" rel="stylesheet">
....
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="js/ripples.min.js"></script>
<script src="js/material.min.js"></script> How do I use Checkout, CheckBox? I have no idea to implement it. |
Sorry about that. It works correctly on main.html. there are some mistake in the tag |
This theme was not tested on safari mobile yet. Sorry. |
Hi! I know how to solve the issue, as @irwing-reza pointed a while ago on #223 it has missing ":" on -moz-transform and -webkit-transform on the ripple javascript. But you forgot to include those changes on your compressed ripples.min.js too :) Thanks anyways |
ripple ink effect is not working on desktop safari and also on mobiles. One more this i am entegerating dropdown exctly but it is not working Please help me to sort out this. Thanks |
@markadward make sure that you have ":" on -moz-transform and -webkit-transform ripples.min.js |
I use this now: $ripple
.css({
"-ms-transform": "scale(" + size + ")",
"-moz-transform": "scale(" + size + ")",
"-webkit-transform": "scale(" + size + ")",
"transform": "scale(" + size + ")"
}) So it should not be the problem @soniar4i |
Yes, it's true. I was thinking on the previous version @FezVrasta. @markadward how it behaves when you click on a button with ripple effect. I've been working with safari on imac and I don't have any trouble with ripple or dropdown buttons. |
with MeteorTemplate.homepage.rendered = () => {
$.material.init()
} material has to initialize on render |
I also meet the same problem, the ripple effect is not working, I already add ripples.cs and ripples.js:
What should I need to add? please someone help this situation. |
I want to report to you guys that I already solved my problem with adding two files (css and js) from this link http://codepen.io/anon/pen/gPmJZR or http://codepen.io/zavoloklom/pen/Gubja (both are the same), I save it as ripples-alt.css and ripples.alt.js and I add class ripple-effect into my button or my menu, and now it's work (I still don't know why it not working by default, may be it conflict with other component).
and in my button I add: |
I also do not see the ripple effect. I installed using meteor add fezvrasta:bootstrap-material-design.
|
@watsokel, @ibgithub, this issue has been closed since May of 2015. Please file new issues, and for personal support please use stackoverflow. Regarding meteor, the package has not been updated for a long time, please see Meteor package update #769. We need help from the community if you want meteor support. |
ripple effect is not working how to enable ripple effect
The text was updated successfully, but these errors were encountered: