![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
vue-insta-stories
Advanced tools
<template>
<Stories :stories="items" />
</template>
<script>
import { Stories } from "vue-insta-stories";
export default {
components: { Stories },
data: () => ({
items: [
"https://picsum.photos/350/200/",
"https://picsum.photos/400/201/",
{
url: "https://file-examples-com.github.io/5mb.mp4",
type: "video",
},
]
})
};
</script>
Property | Type | Default | Description |
---|---|---|---|
stories | Array<String|Object> | required | An array of image urls or array of story objects (more info below) |
interval | Number | 2000 | Story duration in milliseconds |
isPaused | Boolean | false | Toggle the playing state |
loop | Boolean | false | Loop through stories |
currentIndex | Number | 0 | Set the current story index |
Events | |||
storyStart | Function(index) | - | Callback when a story starts |
storyEnd | Function(index) | - | Callback when a story ends |
allStoriesEnd | Function() | - | Callback when all stories have ended (not emitted if loop=true) |
seeMore | Function(story) | - | Callback when user have pressed See more |
prev | Function() | - | Callback when user press prev |
next | Function() | - | Callback when user press next |
update:currentIndex | Function(index) | - | |
update:isPaused | Function(paused) | - |
Property | Description |
---|---|
url | The url of the resource, image or video. |
type | Optional. Type of the story. 'image' | 'video' |
duration | Optional. Duration for which a story should persist. |
template | Optional. Renders story in a different template see more below. |
seeMore | Optional. Enable see more on story (true | { label: 'See more!' } |
/** full screen on mobile & fixed size on desktop **/
.ig-stories {
position: absolute;
height: 100vh;
height: -webkit-fill-available;
width: 100vw;
top: 0;
}
@media (min-width: 768px) {
.ig-stories {
position: relative;
height: 730px;
width: 420px;
}
}
if you are using tailwind you can write
<Stories class="absolute top-0 h-100vh w-100vw md:(h-730px w-420px relative)" />
<template>
<Stories :stories="items">
<template #header="{story}">
<story-header :story="story" />
</template>
</Stories>
</template>
<script>
import { Stories } from "vue-insta-stories";
export default {
components: { Stories },
data: () => ({
items: [ "https://picsum.photos/350/200/"]
})
};
</script>
<template>
<Stories :stories="items">
<template #pool="{story}">
<pool-story :story="story" class="flex-grow"></pool-story>
</template>
</Stories>
</template>
<script>
import { Stories } from "vue-insta-stories";
export default {
components: { Stories },
data: () => ({
items: [{ poolId: 23, template: "pool" }]
})
};
</script>
FAQs
Vue component for Instagram stories
The npm package vue-insta-stories receives a total of 95 weekly downloads. As such, vue-insta-stories popularity was classified as not popular.
We found that vue-insta-stories demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.