18 lines
693 B
JavaScript
18 lines
693 B
JavaScript
|
//モーダル・ドロップダウンの各種設定
|
||
|
$(document).ready(function(){
|
||
|
// the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered
|
||
|
$('.modal').modal();
|
||
|
$('.dropdown-button').dropdown({
|
||
|
inDuration: 300,
|
||
|
outDuration: 225,
|
||
|
constrainWidth: false, // Does not change width of dropdown to that of the activator
|
||
|
hover: true, // 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
|
||
|
}
|
||
|
);
|
||
|
|
||
|
});
|
||
|
|