I’ve been recently trying to use JSS in my React project. My code is of a button that requires the transformY() property as an animation when you hover but it isn’t working. This is my code and the errors I receive when compiling.
JavaScript
x
31
31
1
import { createUseStyles } from 'react-jss'
2
import React, { useState } from 'react';
3
4
const useStyles = createUseStyles({
5
button: {
6
'&hover': {
7
transform: translateY(0.5)
8
}
9
},
10
11
clickButton: {
12
background: '#b60000',
13
transform: translateY(0.5)
14
}
15
})
16
17
function Button() {
18
19
const [button, toggleButton] = useState(useStyles.button);
20
21
return (
22
<div>
23
<svg width="900" height="600">
24
<circle cx="120" cy="120" r="150" stroke="grey" stroke-width="3" fill="grey"/>
25
<circle cx="120" cy="120" r="100" stroke="red" stroke-width="3" fill="red" className={button} onClick={() => toggleButton(useStyles.clickButton)}/>
26
</svg>
27
</div>
28
)
29
}
30
31
export default Button
JavaScript
1
2
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
2
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
JavaScript
1
2
1
ERROR in srcButton.js
2
Line 7:24: ‘translateY’ is not defined no-undef
Line 13:20: ‘translateY’ is not defined no-undef
Search for the keywords to learn more about each error.
webpack compiled with 1 error
Advertisement
Answer
You need to add single quote or double quote while defining the CSS.
So use like below
JavaScript
1
2
1
transform: 'translateY(0.5)'
2
Full code for style:
JavaScript
1
13
13
1
const useStyles = createUseStyles({
2
button: {
3
'&hover': {
4
transform: 'translateY(0.5)'
5
}
6
},
7
8
clickButton: {
9
background: '#b60000',
10
transform: 'translateY(0.5)'
11
}
12
})
13