Home > Article > Daily Programming > How to use the quick return component in Mip
This article mainly introduces the use of quick return to the top component in MIP.
MIP is mobile web accelerator. The quick return to the top component in MIP is mip-gototop, which adds a quick return to the top button and clicks to return to the top of the page.
Regarding the effect of quickly returning to the top, we have also introduced Using jQuery to achieve the effect of returning to the top. Friends who are interested can also briefly learn about it.
Recommended reference manual for more mip content details: "MIP Documentation Manual"
Quickly return to the top component (mip-gototop Quickly return to the top) The code example is as follows:
<mip-fixed type="gototop"> <mip-gototop threshold='300'> </mip-gototop> </mip-fixed>
Note, we need to introduce the following js script in the mip file.
<script src="https://c.mipcdn.com/static/v1/mip-gototop/mip-gototop.js"> </script>
The preview effect is as shown below:
The threshold attribute indicates the height of the page that has been scrolled when the button is displayed. We set the value here to 300, which means that when the page scrolls to a height of 300, the back to top button will appear.
If the threshold attribute does not set a specific height value, the default value is 200.
This article is about the basic use of the quick return to the top component in MIP. It is very simple and easy to understand. Hope it helps those in need! Then there are more common MIP components, such as Carousel component, Inline frame component, Collapse menu component, App promotion download component, Mip form components, etc. have also been introduced to you for your reference and study.
The above is the detailed content of How to use the quick return component in Mip. For more information, please follow other related articles on the PHP Chinese website!