2018-01-28 23:22:43 +11:00
|
|
|
//モーダル・ドロップダウンの各種設定
|
2019-05-19 17:39:30 +10:00
|
|
|
$(document).ready(function () {
|
|
|
|
// the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered
|
2019-06-07 02:11:04 +10:00
|
|
|
$('.modal').modal({
|
|
|
|
inDuration: 300,
|
|
|
|
outDuration: 225,
|
|
|
|
constrainWidth: false, // Does not change width of dropdown to that of the activator
|
|
|
|
hover: false, // Activate on hover
|
|
|
|
gutter: 0, // Spacing from edge
|
|
|
|
belowOrigin: false, // Displays dropdown below the button
|
|
|
|
alignment: 'left', // Displays dropdown with edge aligned to the left of button
|
|
|
|
stopPropagation: false
|
2020-08-02 17:08:07 +10:00
|
|
|
})
|
2019-06-07 02:11:04 +10:00
|
|
|
$('.dropdown-trigger').dropdown({
|
2019-05-19 17:39:30 +10:00
|
|
|
inDuration: 300,
|
|
|
|
outDuration: 225,
|
|
|
|
constrainWidth: false, // Does not change width of dropdown to that of the activator
|
|
|
|
hover: false, // Activate on hover
|
|
|
|
gutter: 0, // Spacing from edge
|
|
|
|
belowOrigin: false, // Displays dropdown below the button
|
|
|
|
alignment: 'left', // Displays dropdown with edge aligned to the left of button
|
|
|
|
stopPropagation: false // Stops event propagation
|
|
|
|
}
|
2020-08-02 17:08:07 +10:00
|
|
|
)
|
|
|
|
$('.collapsible').collapsible()
|
2019-10-20 21:09:52 +11:00
|
|
|
$('#videomodal').modal({
|
|
|
|
onCloseEnd: stopVideo
|
2020-08-02 17:08:07 +10:00
|
|
|
})
|
|
|
|
})
|