-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example: Add In-Place Page + Cleanup
- Loading branch information
1 parent
add4e25
commit 5e1ed10
Showing
5 changed files
with
81 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
import React, { Component } from 'react'; | ||
import ReactImageMagnify from '../pkg-lnk/ReactImageMagnify'; | ||
|
||
import './App.css'; | ||
|
||
import watchImg355 from '../images/wristwatch_355.jpg'; | ||
import watchImg481 from '../images/wristwatch_481.jpg'; | ||
import watchImg584 from '../images/wristwatch_584.jpg'; | ||
import watchImg687 from '../images/wristwatch_687.jpg'; | ||
import watchImg770 from '../images/wristwatch_770.jpg'; | ||
import watchImg861 from '../images/wristwatch_861.jpg'; | ||
import watchImg955 from '../images/wristwatch_955.jpg'; | ||
import watchImg1033 from '../images/wristwatch_1033.jpg'; | ||
import watchImg1112 from '../images/wristwatch_1112.jpg'; | ||
import watchImg1192 from '../images/wristwatch_1192.jpg'; | ||
import watchImg1200 from '../images/wristwatch_1200.jpg'; | ||
|
||
class App extends Component { | ||
get srcSet() { | ||
return [ | ||
`${watchImg355} 355w`, | ||
`${watchImg481} 481w`, | ||
`${watchImg584} 584w`, | ||
`${watchImg687} 687w`, | ||
`${watchImg770} 770w`, | ||
`${watchImg861} 861w`, | ||
`${watchImg955} 955w`, | ||
`${watchImg1033} 1033w`, | ||
`${watchImg1112} 1112w`, | ||
`${watchImg1192} 1192w`, | ||
`${watchImg1200} 1200w`, | ||
].join(', '); | ||
} | ||
|
||
render() { | ||
return ( | ||
<div className="fluid"> | ||
<div className="fluid__image-container"> | ||
<ReactImageMagnify {...{ | ||
largeImage: { | ||
alt: '', | ||
src: watchImg1200, | ||
width: 1200, | ||
height: 1800 | ||
}, | ||
smallImage: { | ||
isFluidWidth: true, | ||
alt: 'Wristwatch by Ted Baker London', | ||
src: watchImg1200, | ||
srcSet: this.srcSet, | ||
sizes: '(min-width: 480px) 30vw, 80vw' | ||
}, | ||
isHintEnabled: true, | ||
enlargedImagePosition: 'over' | ||
}} /> | ||
</div> | ||
<div className="fluid__instructions"> | ||
<h3>Touch</h3> | ||
<p className="App-intro">Press (long touch) image to magnify. Pan (drag) to traverse image.</p> | ||
<p className="App-intro">Note the page can be scrolled when touch begins on image.</p> | ||
<h3>Mouse</h3> | ||
<p>Hover image to magnify</p> | ||
<p> | ||
Specify enlargedImagePosition: 'over' for in-place image enlargement | ||
in the mouse environment. | ||
</p> | ||
</div> | ||
<div style={{height: '1000px'}} /> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,9 @@ | |
"magnify", | ||
"expand", | ||
"lens", | ||
"detail", | ||
"ecommerce", | ||
"store", | ||
"shopping", | ||
"product" | ||
], | ||
|